Figured this out 4 hours later… From a WordPress wizard…
To fix, or “hide” these errors do the following:
Go to your host (or FTP). Go to Control Panel and then File Manager. Here you need to access the wp-config.php file. Download a copy and copy paste a copy into a fresh notes document in case you need to revert back to the original. Here you will scroll down to where you will find the following code:
define(‘WP_DEBUG’, false);
This code is used for debugging. You need to add this code under it:
error_reporting(0);
@ini_set(‘display_errors’, 0);
Save it.