Notifications
Clear all

Suggestion [Closed] Hide member "Last seen" and "dislike" button

3 Posts
2 Users
1 Likes
624 Views
Posts: 2
Topic starter
(@notea)
New Member
Joined: 2 years ago

i want to hide the member page "Last seen" and "dislike" button

Thank you!

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

Hi @notea,

Insert the below CSS Codes in Custom CSS Codes field from Dashboard > wpForo > Settings > Colors & Styles settings.

This CSS Code is for hiding the dislike button.

#wpforo #wpforo-wrap .wpf-popover-content {
    display: none !important;
}

 

This one will hide Joined and Last Seen dates, Last Seen date cannot be hidden separately as both text are in one tag separated with Line Break element(<br>).

#wpforo #wpforo-wrap .wpforo-profile .wpforo-profile-head-bottom .wpfp-joined {
    display: none !important;
}
1 Reply
(@notea)
Joined: 2 years ago

New Member
Posts: 2

@chris Thank you! 🙂