Notifications
Clear all

[Solved] Sidebar issue

5 Posts
2 Users
1 Reactions
140 Views
Posts: 66
Topic starter
(@hbk747)
Estimable Member
Joined: 12 months ago

Hello,

On the wpforo page of my website which is paradigmshift.com.pk/community-forum there is a sidebar issue. Basically on my sidebar there are 3 wpforo widget and 1 non-wpforo widget. The non-wpforo widget is from a plugin called top 10. It displays the most viewed articles on the website. For some reason formatting of this widget is wonky especially on desktop. Please check the page and the widget's title is Trending on Paradigm Shift. Also note that this widget is also present on my homepage and others and it works perfectly fine.

Also is there a wpforo widget that displays the most viewed/trending posts/topics on the forum?

 

Warm regards,

4 Replies
Tutrix
Posts: 1526
(@tutrix)
Noble Member
Joined: 5 years ago

Hi @hbk747 

Add this CSS code to the custom CSS

#wpforo #wpforo-wrap .tptn_after_thumb {
  overflow: hidden;
  padding: 0 0 0 20px !important;
  display: block !important;
}
#wpforo #wpforo-wrap .tptn_title {
  font-family: Arial, Helvetica, sans-serif,Verdana, Geneva, sans-serif;
  font-weight: 700 !important;
  font-style: normal;
  color: #002044 !important;
  font-size: 18px !important;
  margin: 0 0 10px 0 !important;
}
#wpforo #wpforo-wrap .tptn_posts_widget li:first-child::before {
  top: 10px !important;;
}
#wpforo #wpforo-wrap .tptn_posts_widget li::before {
  content: counter(step,decimal);
  color: #fff !important;
  left: 0;
  position: absolute;
  text-align: center;
  height: 26px;
  width: 26px;
  line-height: 2 !important;
  top: 25px;
  z-index: 3;
  font-size: 13px !important;
}

Dashboard > wpForo > Settings > Colors & Styles > Custom CSS

Reply
Posts: 66
Topic starter
(@hbk747)
Estimable Member
Joined: 12 months ago

@tutrix I will try that. I have another question. If the title of a topic on wpforo is ABC then the url will be paradigmshift.com.pk/community-forum/topics/ABC correct? But what if I change the title to ABCDE, will the url change to paradigmshift.com.pk/community-forum/topics/ABCDE?

If yes, then will the old url return a 404? Is changing the title safe to do then?

Reply
1 Reply
Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1526

@hbk747 

Changing the topic title from ABC to ABCDE won't change the URL (slug), which remains /abc.

If you want to change the URL as well, you have to do it in the database.

Reply
Tutrix
Posts: 1526
(@tutrix)
Noble Member
Joined: 5 years ago

@hbk747 

Posted by: @hbk747

Also is there a wpforo widget that displays the most viewed/trending posts/topics on the forum?

You can use the Recent Topic widget a second time with the desired setting, for example, view count.

 

Reply