Tagged: enfold
I would like to change a link on my home page. However, i cannot do so in the main page’s editor. I tried to even remove the link from home page altogether but it still shows up. Anyone know why?
Hey hellomerilou,
I think your problems are due to the new Gutenberg editor in WordPress. You could either disable it using code or update the theme to the latest version which is 4.5.4, then use the Classic Editor in the theme options.
The update to 4.5.x has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or use a plugin to upload the theme zip file: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
If you don’t want to update then please try this in your functions.php file:
// disable for posts
add_filter('use_block_editor_for_post', '__return_false', 10);
// disable for post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);
Best regards,
Rikard