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
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>
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.
Awesome.. You guys are so helpful and quick with support!