0

I am using wordpress 5 along with Classic Editor plugin. But I am not able to edit posts using it. The post edit area is completely blank and the toolbar above it also not showing

it.

sourabh
  • 418
  • 4
  • 8

3 Answers3

1

In my case the problem was the mixed-content error. The js file of the wordpress classic editor plugin was not loading because it was using http protocol on an https site. So I fixed it by adding this line in wp-config file.

if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')
  $_SERVER['HTTPS']='on';

It will force all the content to be served over https and fix the mixed-content error.

sourabh
  • 418
  • 4
  • 8
0

I faced a similar issue. What I did was to downgrade my WordPress version to a previous version. And now, it's working fully.

0

This situation presented itself yesterday, July 27, 2021. I called Siteground, my host, and they restored a backup from a week earlier. That didn't work and I was out $30. I switched themes with no success. Long story short, I deactivated my 13 plugins and brought them up one by one. I noted a 'Siteground Security' plugin released yesterday, July 27, 2021 when the issue presented itself. As I brought back my plugins, the text editor appeared UNTIL I activated the 'Siteground Security' plugin; then the text editor disappeared. I am NOT tech-savvy, but this worked for me.

Gene
  • 1