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 [Solved] Remove forum title

7 Posts
3 Users
1 Reactions
2,421 Views
Posts: 12
Topic starter
(@ankurkaul17)
Eminent Member
Joined: 5 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: 1522
(@tutrix)
Noble Member
Joined: 5 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: 5 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: 5 years ago

Noble Member
Posts: 1522

@ankurkaul17

 

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

😀

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

@tutrix

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

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

Support Team
Posts: 10616

@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: 5 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.