Notifications
Clear all

wpForo 1.x.x [Solved] How to remove Reply Topic Title

3 Posts
2 Users
0 Likes
998 Views
Posts: 85
Topic starter
(@zeeshan333)
Estimable Member
Joined: 5 years ago

Here is the CSS i attempted to remove the automatic RE:[Thread Name]

#wpf-post-create .wpf_title .wpf-subject{display:none;}

https://prnt.sc/pg0g15

Doesn't seem to work, what code should I try instead?

2 Replies
Sofy
Posts: 4309
 Sofy
Admin
(@sofy)
Support Team
Joined: 6 years ago

Hi @zeeshan333,

Please try the following CSS code:

#wpforo #wpforo-wrap .wpf-post-create .wpf-subject {
display: none !important;
}

Please don't forget to delete all caches and press CTRL+F5 (twice) on the frontend before checking. 

1 Reply
(@zeeshan333)
Joined: 5 years ago

Estimable Member
Posts: 85

@sofy

Brilliant. Thank you.