Notifications
Clear all

[Solved] Missing Title input field in reply to topic

3 Posts
2 Users
1 Reactions
391 Views
JorgeW
Posts: 105
Topic starter
(@jorgew)
Estimable Member
Joined: 5 years ago

Hi,

In our forum we frequently need to modify the default title in many replies to topic. This can be done in a topic included within an extended layout, but it can't be done in a topic that was included within a threaded one, which is the most used layout in our forum.

Is it possible to include in all replies to topic option in threaded layout (as it was in wpForo 1.x.x), the "Title" input field, so it can be edited?

Thanks.

_______________
wpForo: 2.2.7
Theme: Classic

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

Hi @jorgew,

This is the Threaded Layout. It's designed like a comment section. Each forum layout has its own layout differences. So in the threaded layout your replies are considered as comments with hierarchical threads. Comments don't have titles.

 In case you still want to enable the title field, put this CSS code in Dashboard > wpForo > Settings > Colors & Styles > Custom CSS Code textarea. Save it, delete all caches, go to forum front-end and press Ctrl+F5 to reset the browser cache:

#wpforo #wpforo-wrap .wpf-form-wrapper.wpfel-4 .wpf-post-create .wpf-field-name-title{
     display: block !important;
}
JorgeW
Posts: 105
Topic starter
(@jorgew)
Estimable Member
Joined: 5 years ago

Thanks @robert, works perfect, just what we needed!