AI Search
Classic Search
Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
3
Posts
2
Users
1
Reactions
1,181
Views
Dec 11, 2019 2:56 am
Is there a way to remove the button under the avatar? Please see screenshots below
Cheers
2 Replies
Dec 11, 2019 12:09 pm
Hi@zeeshan333,
You can hide it using CSS codes.
To tell the truth I don't follow you well. If you want to hide the toggle icon with the member profile buttons, use the following CSS code:
div.wpforo-membertoggle {
display: none;
}
If you want to hide the toggle icon but keep displaying the member profile buttons, you'll need to use the following CSS code:
#wpforo #wpforo-wrap .wpforo-post .wpforo-memberinfo {
display: block !important;
}
#wpforo #wpforo-wrap .wpforo-post .wpforo-membertoggle i.fas.fa-caret-up {
display: none;
}
The CSS codes should be added in the "Custom CSS code" textarea, located in the Dashboard > Forums > Settings > Style Tab.
Please don't forget to delete all caches and press Ctrl+F5 (twice) on the frontend before checking to reload the updated CSS file.
Dec 11, 2019 3:51 pm
Brilliant. Thank you very much.
