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 [Closed] Impossible to edit topic title

4 Posts
3 Users
2 Reactions
854 Views
Posts: 42
Topic starter
(@nican)
Trusted Member
Joined: 6 years ago

Hello,

since the last update I noticed that is impossible to edit a topic title after it's been created.

I am logged in as administrator with full permissions.

By inspecting the code I see this css rule

#wpforo #wpforo-wrap #wpf-form-wrapper.wpfel-4 .wpf-post-create .wpf-subject {
display: none;
}

 

it's in the default wpforo css file (..wp-content/plugins/wpforo/wpf-themes/classic/style.css?ver=1.7.4)

and is hiding the topic title text box. I am not sure what going on, what do you think?

See also https://www.screencast.com/t/Zjrrae3UZNp

I have tried to edit both mine and other users topic, but it's all the same.

 

Thank you

3 Replies
Tutrix
Posts: 1522
(@tutrix)
Noble Member
Joined: 5 years ago

@nican

replace "none" with "block" (classic/style.css)

or put this CSS Code to custom css

#wpforo #wpforo-wrap #wpf-form-wrapper.wpfel-4 .wpf-post-create .wpf-subject {
display: block;
}
2 Replies
(@nican)
Joined: 6 years ago

Trusted Member
Posts: 42

@tutrix Thank you, I know this is a possible solution. But since this css rule is in the default WpForo css file I am wondering why? Maybe it's supposed to be there and there is some issue with my settings or something else.

Sofy
 Sofy
Admin
(@sofy)
Joined: 8 years ago

Support Team
Posts: 5483

@nican,

this issue will be fixed in the next wpForo update. Currently, you should use the solution provided by Tutrix.