Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

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

3 Posts
2 Users
1 Reactions
1,311 Views
Posts: 2
Topic starter
(@notea)
New Member
Joined: 3 years ago

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

Thank you!

2 Replies
Chris
Posts: 3611
(@chris)
Famed Member
Joined: 4 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: 3 years ago

New Member
Posts: 2

@chris Thank you! 🙂