lisa
(@contentiskey)
-The error messages on your site seem to be related to a plugin. Is this plugin installed and activated? https://ww.wp.xz.cn/plugins/background-per-page/ If yes, I see this message on the plugin’s page: “This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.”
-The error messages are likely displayed if you have define( ‘WP_DEBUG’, true ); in your site’s wp-config.php file – use this guide – https://developer.ww.wp.xz.cn/apis/wp-config-php/#wp-debug
-the wp-config.php file is normally accessible in your web hosting (bluehost?) account’s file manager area.
-
This reply was modified 3 years ago by
lisa.
-
This reply was modified 3 years ago by
lisa.
My php file already had this;
define(‘WP_DEBUG’, false);
So I changed that to
ini_set('display_errors','Off');
ini_set('error_reporting', E_ALL );
define('WP_DEBUG', false);
define('WP_DEBUG_DISPLAY', false);
Like it said, and that did nothing.
lisa
(@contentiskey)
Try this: install health check plugin which can be used in troubleshooting mode to deactivate all plugins and theme – might help narrow down the source of the issue https://ww.wp.xz.cn/plugins/health-check/
(are you actively using “Background per Page” plugin? the plugin may not be supported and has not been updated recently. might need to be removed/replaced.)
It probably is that background plug-in but I am afraid that I will lose my background image, or it won’t show properly if i deactivate the plug-in. I’ll try it tomorrow
lisa
(@contentiskey)
Before making any changes that will likely impact display of your site, be sure you have a complete backup of files and database Guide: https://ww.wp.xz.cn/documentation/article/wordpress-backups/