Nov 18, 2020 4:41 pm
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
Nov 19, 2020 11:14 am
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.
Nov 19, 2020 11:17 am
That worked great, thank you!