Hey Bryan,
PHP Notices and Warnings are harmless so you can hide them by adding the following code in your wp-config.php file just below the define( 'WP_DEBUG', true ); line.
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
// Disable display of errors and warnings
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'display_errors', 0 );
Regarding the white bar, please check this after the Notice is gone. If the white bar persists, we need to know first if the issue is really coming from our theme and not caused by 3rd party factors. To do that, please perform the following tests. Your site is under construction so I couldn’t see what’s applicable for your case.
- Testing For Plugin Conflict
- Theme Update
- Child Theme
- Css/Js Customization
Only if none of that helps, please give us the following information in a Secure Note.
- WordPress Login URL
- Admin username and password
You can find the Secure Note button at the bottom of your posts.
Thanks.