May 26, 2020 10:51 am
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
May 26, 2020 11:35 am
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;
}