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.
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
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;
}