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.

 

wpForo 1.x.x [Closed] How can i remove the Buttons under Name?

6 Posts
2 Users
2 Reactions
877 Views
Y-3
Posts: 7
 Y-3
Topic starter
(@y-3)
Active Member
Joined: 3 years ago

Hey, i want to hide the buttons under the username, is there a code to quickly make this? I mean the Buttons "profile, account, activity and subscriptions"

5 Replies
Tutrix
Posts: 1522
(@tutrix)
Noble Member
Joined: 5 years ago

@y-3

add this to custom css

#wpforo #wpforo-wrap .wpforo-profile-wrap .h-bottom {
  display: none;
}

Dashboard > Forums > Settings > Style (custom css)

4 Replies
Y-3
 Y-3
(@y-3)
Joined: 3 years ago

Active Member
Posts: 7

@tutrix Hey, thanks Tutrix for the answer, but the Buttons are still visible. I also cleaned the cache

Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1522

@y-3 

The code above removes the complete buttonbar in the profile

you do not write where exactly you want to remove these buttons

Y-3
 Y-3
(@y-3)
Joined: 3 years ago

Active Member
Posts: 7

@tutrix oh sorry, i want to remove them under the Avatar and the Name of every Post. In the extended layout they're hidden under this dropdown arrow.

Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1522

@y-3 

##wpforo #wpforo-wrap .wpfl-1 .wpforo-post .wpforo-membertoggle,
#wpforo #wpforo-wrap .wpfl-1 .wpforo-post .wpforo-memberinfo {
  display: none !important;
}