Turn off RSS links ...
 
Notifications
Clear all

[Closed] Turn off RSS links on wpForo

3 Posts
2 Users
0 Likes
3,752 Views
(@joelpeterson)
Active Member
Joined: 8 years ago
Posts: 5
Topic starter  

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


   
 Tom
(@tomson)
Famed Member Admin
Joined: 9 years ago
Posts: 4172
 

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}

   
(@joelpeterson)
Active Member
Joined: 8 years ago
Posts: 5
Topic starter  

Wow! Β Thank you guys! πŸ™‚


   
Share:
Scroll to top