Notifications
Clear all

wpForo 1.x.x [Solved] Remove forum title

7 Posts
3 Users
1 Likes
1,728 Views
Posts: 12
Topic starter
(@ankurkaul17)
Eminent Member
Joined: 4 years ago

Hi Team

I disabled Show Forum Page Title from the features tab but the title still shows on the page. I would like to remove only the title and not the wpforo-feed 

CSS display none removes all of that. Please help.

Website : 3dpi.in

Thanks

6 Replies
Tutrix
Posts: 1212
(@tutrix)
Noble Member
Joined: 4 years ago

@ankurkaul17

try

#wpforo #wpforo-wrap #wpforo-title{ display:none;}
#wpforo #wpforo-wrap .wpf-head-bar-left #wpforo-title{ display:block;}

 

Posts: 12
Topic starter
(@ankurkaul17)
Eminent Member
Joined: 4 years ago

@tutrix

Thanks for the help. But this removes the wpforo-feed as well. I would like to have the unread post and rss links at the top.

 

1 Reply
Tutrix
(@tutrix)
Joined: 4 years ago

Noble Member
Posts: 1212

@ankurkaul17

 

#wpforo #wpforo-wrap #wpforo-title {
font-size: 0;
}

😀

Posts: 12
Topic starter
(@ankurkaul17)
Eminent Member
Joined: 4 years ago

@tutrix

Ha ha. Thanks that worked. Why didn't I think of this. Cheers

1 Reply
Robert
Admin
(@robert)
Joined: 8 years ago

Support Team
Posts: 10498

@ankurkaul17 and @tutrix,

I think you've done a wrong thing. You've disabled forum and topi titles. Now people don't see topic titles when they go to some topic, they don't understand what topic is this:

https://3dpi.in/forum/3d-printing-beginner-zone/which-3d-printer-to-buy/

They don't see forum title in sub-forums:

https://3dpi.in/forum/3d-printing-beginner-zone/

 

Please don't hide the #wpforo #wpforo-wrap #wpforo-title element. This is the worst idea ever. I recommend remove all custom CSS code and show the titles back.

If you just want to disable the forum home title you should use this CSS code:

#wpforo #wpforo-wrap.wpft-forum #wpforo-title{display:none;}

 

Posts: 12
Topic starter
(@ankurkaul17)
Eminent Member
Joined: 4 years ago

@robert Thank you so much. Did not realize that it removed topic titles as well. Made the changes as per your suggestion and it works now.

Appreciate your help.