Notifications
Clear all

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

6 Posts
2 Users
2 Reactions
655 Views
Y-3
Posts: 7
 Y-3
Topic starter
(@y-3)
Active Member
Joined: 2 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: 1357
(@tutrix)
Noble Member
Joined: 4 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: 2 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: 4 years ago

Noble Member
Posts: 1357

@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: 2 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: 4 years ago

Noble Member
Posts: 1357

@y-3 

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