Thanks. Indeed they don’t give any relevant information on what actually causes the issue.
I tried several times on a testing site, and cannot reproduce the error.
How do you edit the pages in Divi? is it from the front-end, or in the back-end using the “blocks”?
Do you have access to the PHP error logs? they’re often at your website’s root folder, or are provided on your hosting account.
If you don’t have access to the error logs from your host, you can enable debugging mode, by adding the following lines to wp-config.php just before where it says: /* That’s all, stop editing! Happy publishing. */
define( ‘WP_DEBUG’, true );
define( ‘WP_DEBUG_DISPLAY’, false );
define( ‘WP_DEBUG_LOG’, true );
A debug.log file should be created inside the folder wp-content
, with the errors.
Could you also open your browser’s console before saving, and looking if any javascript errors are added when you save?
Marc.
-
This reply was modified 4 years, 2 months ago by Marc Lacroix.