Notifications
Clear all

wpForo 1.x.x [Closed] Remove "solved" from statistic bar and individual posts

4 Posts
3 Users
0 Reactions
1,843 Views
Posts: 26
Topic starter
(@ruralinfo)
Eminent Member
Joined: 8 years ago

Is there a way to removed the solved icon and word from the bottom statistic bar and from indivdual posts?  The solved does not fit well with my forum.  Thank you

3 Replies
OMTesla
Posts: 217
(@omtesla)
Active Member
Joined: 8 years ago
Posted by: ruralinfo

 

Is there a way to removed the solved icon and word from the bottom statistic bar and from indivdual posts?  The solved does not fit well with my forum.  Thank you

   

Hello
You will need to edit some files in WpForo plugin dir.

Example to remove solved icon from Forum footer statistics go to /wp-content/plugins/wpforo/wpf-themes/classic/footer.php find and remove this.

<span><i class="fa fa-check-circle wpfcl-8"></i> <?php wpforo_phrase('Solved') ?></span>
Robert
Posts: 10587
Admin
(@robert)
Support Team
Joined: 9 years ago

You can also use CSS code. Please navigate to Forums > Settings > Styles, put this code in Custom CSS textarea and save options:

#wpforo #wpforo-wrap .wpforo-solved{display:none!important;}
#wpforo #wpforo-wrap .wpf-topic-icons span:nth-child(7){display:none!important;}

Don't forget delete cache and reload forum front-end twice to load this change.

Posts: 26
Topic starter
(@ruralinfo)
Eminent Member
Joined: 8 years ago

Awesome..  You guys are so helpful and quick with support!