Notifications
Clear all

Style [Solved] Don't show tags here

3 Posts
2 Users
1 Likes
989 Views
Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 5 years ago

Hello dear community.

When, for example, I go to the "new features" tag:  https://wpforo.com/community/?wpfin=tag&wpfs=new%20features , I would like to hide the other tags from the other topics in this list:

How I do this?

Topic Tags
2 Replies
Robert
Posts: 10503
Admin
(@robert)
Support Team
Joined: 8 years ago

@hector,

There is no way to do that. You can use this CSS to hide all tags. Insert this CSS code in Dashboard > Forums > Settings > Styles > Custom CSS Code textarea, save it, delete all caches, go to forum front-end and press Ctrl+F5:

#wpforo #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-ptr {
    display: none;
}
#wpforo #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-ttr {
    border-bottom: #fff 7px solid;
}
Posts: 108
Topic starter
(@hector)
Estimable Member
Joined: 5 years ago

Thank you.

Solve it with your help.