- I didn’t actually try this one (misdirection!) but it could be your issue. Shared hosting can block access to the
/xmlrpc.php
file. This plugin can help you get around that.
https://wordpress.org/plugins/rename-xml-rpc/
Be sure to also follow the installation instructions: https://wordpress.org/plugins/rename-xml-rpc/#installation php-xmlrpc
is not installed.sudo apt-get install php-xmlrpc
. Thensudo service apache2 restart
. Not my issue, but kept on looking.php-xml
not installed.sudo apt-get install php-xml
. Thensudo service apache2 restart
. This was my issue!
Add a Resize Handle for WordPress Post and Page Edit Sidebar

I was converting some ACF fields to Gutenberg ACF fields and put together some options for how/where content can be edited. The acf_register_block_type() function has the mode option. The allowed values are: – auto: Preview is shown by default but changes to edit form when block is selected. – preview: Preview is always shown. Edit … Continued