Notifications
Clear all
wpForo
3
Posts
2
Users
0
Reactions
4,013
Views
Topic starter
22/08/2016 9:31 pm
Hey guys SUPER impressed with wpFORO!
I've got a paid membership site that I am running and I need to turn off your RSS links that are on the top of each post.... is there any way to do that in your beta version?
Thanks
23/08/2016 12:11 am
Thank you joelpeterson,
I'm sorry but there is no such an option in Beta-6. We'll add it in next version. But if you need it asap you can do that manually:
Open /wpforo/wpf-includes/class-feed.php file
Find this line:
function rss2_forum( $forum = array(), $topics = array() ){
Change to this
function rss2_forum( $forum = array(), $topics = array() ){ return false;
Then in the same file find this line:
function rss2_topic( $forum = array(), $topic = array(), $posts = array() ){
Change to this:
function rss2_topic( $forum = array(), $topic = array(), $posts = array() ){ return false;
Then use this CSS code to hide RSS buttons:
#wpforo-wrap .wpf-action-link span.wpf-feed{display:none} #wpforo-wrap .wpforo-post-head .wpf-right a{display:none}
Topic starter
23/08/2016 12:14 am
Wow! Thank you guys! 🙂