Notifications
Clear all

wpForo 1.x.x [Solved] Hide "Activity" page in profiles

3 Posts
2 Users
2 Likes
778 Views
Posts: 349
Topic starter
(@danniee)
Honorable Member
Joined: 4 years ago

Is there a way to disable/hide the activity section in user profiles? I basically only use WPForo for its member functionality so it's displaying old forum posts that are not really relevant anymore. I tried lookin for an option to disable it, but can't find any.

2 Replies
Alvina
Posts: 1869
Moderator
(@alvina)
Member
Joined: 4 years ago

Please try the followibng CSS code:

#wpforo #wpforo-wrap .wpforo-profile-wrap .wpf-profile-menu:nth-child(3) {
display: none !important;
}

The CSS code should be added in the Dashboard > Forums > Settings > Styles admin page "Custom CSS Code" textarea.

Don't forget to delete all caches and press CTRL+F5(twice) on the frontend.

Posts: 349
Topic starter
(@danniee)
Honorable Member
Joined: 4 years ago

That worked great, thank you!