Archived topic
Instant error after updating GB 1.7.1 to 1.7.2
3 replies · Started by Rostyslav on March 3, 2023
Hello
The error shows on the creen for 2 seconds when I click on edit page.
Video is linked in private.
Hi there,
This is a known bug. It will be fixed in 1.7.3: https://github.com/tomusborne/generateblocks/pull/936
For now, you can (and should) turn off WP_DEBUG: https://wordpress.org/documentation/article/debugging-in-wordpress/
That will stop warnings like this from showing.
Let us know if you have any other questions :)
Hello again!
I am writing in GP forum instead of GB because on GB there in not a private area.
On the video I have shown you, that errors appear when the wp_debug is already turned off.
Thanks
PHP Warnings should not show if WP_DEBUG is turned off.
Your hosting may have error reporting turned on. You could try adding this to your wp-config.php file:
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
This will be fixed in GB 1.7.3 (Monday).