Message in log
Hello,
I get the following message in my log and it shows up all the time again and again. What does it mean?
PHP Deprecated: Return type of BrizyPlaceholders\AbstractPlaceholder::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/allatsea/public_html/wp-content/plugins/brizy/vendor/bagrinsergiu/content-placeholder/lib/AbstractPlaceholder.php on line 93
0
-
Hi Emelie,
Thank you for reaching out to us.
It appears that the debug mode is enabled on your website, which is why these error messages are being displayed. To hide these messages, open the file wp-config.php on your site root (using File Manager or an FTP tool). Locate these 2 lines of code in the file. Save the file after changing the word "true" to "false."
if ( ! defined( 'WP_DEBUG' ) ) {
define( 'WP_DEBUG', true );
}
Once you make the change, your code should look like thisif ( ! defined( 'WP_DEBUG' ) ) {
define( 'WP_DEBUG', false );
}Please try this and let me know how it goes.
Best regards,
Ariel H.0
Please sign in to leave a comment.
Comments
1 comment