[ad_1]
Website was working last night, come back today and I get this. Google searches haven’t gotten me anywhere. I’m using Elementor, Woocommerce, and ShopLentor, not sure if any of those are the culprit here or if wordpress just updated or something and caused everything to break. Plz halp. ðŸ˜
[ad_2]
Check your PHP version, they might have updated it to a higher version that might not be compatible with the Shoplentor plugin. Also first downgrade PHP version and see if that helps. Also deactivate the shoplentor plugin and see if that helps
You should also run query monitor plugin, it is a free tool that lets you know where the database errors are happening but make sure to deactivate it once you are done because it is a resource hog and will slow down site a bit
So…further research led me to this.
In the “class-admin-manager.php” file, I added this line `require_once(ABSPATH . ‘wp-admin/includes/screen.php’);`to the beginning of the code to look like this:
`<?php`
`namespace Wb4WpManagers;`
`require_once(ABSPATH . ‘wp-admin/includes/screen.php’);`
`use Exception;`
`use Wb4WpConstantsProvider_Names;`
`use Wb4WpHelpersCreative_Mail_Helper;`
`use Wb4WpHelpersEnvironment_Helper;`
`use Wb4WpHelpersOptions_Helper;`
`use Wb4WpHelpersPost_Helper;`
`use Wb4WpHelpersProvider_Helper;`
`use Wb4WpWb4wp;`
`use WP_Block_Editor_Context;`
`/**`
`* Class Admin_Manager`
`* @package Wb4WpManagers`
`*/`
`final class Admin_Manager {`
Seemed to fix the issue at least temporarily.