Notifications
Clear all

wpForo 1.x.x [Solved] Removing "Unread Posts" link from top of Forum

5 Posts
3 Users
0 Likes
2,730 Views
Posts: 1
Topic starter
(@witty)
New Member
Joined: 5 years ago

There is a link for "Unread Posts" at top of the forum (just below the menu ). There were two more RSS links along side it- but i was able to remove them through settings-> features. But i cant find out how to remove  this "Unread Posts" link from there.

Thanks for help

Topic Tags
4 Replies
Sofy
Posts: 4309
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi witty,

There is no option for removing the "Unread Posts" link. You can use the following CSS code.

Please navigate to Dashboard > Forums > Settings > Styles admin page, put the following CSS in the "Custom CSS Code" textarea, save it delete all caches, do CTRL+F5 on forum frontend. 

#wpforo #wpforo-wrap span.wpf-unread-posts {
display: none !important;
}

#wpforo #wpforo-wrap span.wpf-unread-posts + sep {
display: none !important;
}
3 Replies
(@maltrain)
Joined: 5 years ago

Eminent Member
Posts: 12

It worked perfect, but I'd like to remove the "Forums (RSS) | Topics (RSS)" links next to it too... is there a code you can give me for that?

Sofy
 Sofy
Admin
(@sofy)
Joined: 6 years ago

Support Team
Posts: 4309

Hi @maltrain,

There is an option that allows disabling RSS Feed. The option is located in Dashboard > Forums > Settings > Features admin page. You just need to set the value "NO" for the "Enable RSS Feed" option.

(@maltrain)
Joined: 5 years ago

Eminent Member
Posts: 12

Thanks!!! Arigato!!!