Notifications
Clear all

wpForo 1.x.x [Solved] How to remove ratink & likes from user profil/member activity

3 Posts
2 Users
0 Likes
698 Views
Posts: 5
Topic starter
(@maurice2-0)
Active Member
Joined: 2 years ago

Hello @ all

We want to remove some of the "boxes" in the profiles under the point Member Activity, for example likes and ranking. We did not want our users to look for likes, like on facebook or instagram.  
Is there a way to control these "Boxes" differntly, to switch individual options of them ?

Best Regards

Maurice

 

2 Replies
Chris
Posts: 3650
(@chris)
Famed Member
Joined: 3 years ago

HI @maurice2-0,

That boxes don't have individual option, and for hiding them you can use CSS codes for that. 

For Example:

.wpf-statbox.wpfbg-9:nth-child(6) {
    display: none !important;
}

 Insert the above CSS Code in Custom CSS Codes field form Dashboard > Forums > Settings > Styles Tab. 

Posts: 5
Topic starter
(@maurice2-0)
Active Member
Joined: 2 years ago

Thanks. Perfect !