Error Message and New White Bar at Bottom

This error message popped up on the top of my wordpress website:

Notice : Undefined index: package in /home/theuniteapp/public_html/wp-content/themes/pro/cornerstone/includes/classes/admin/class-updates.php on line 136

ALSO

On this page, there’s a white bar at the bottom that also showed up. Not sure if they’re related, but need to get it off this page.

https://theuniteapp.com/path-to-partnership/

Any insight into addressing these is appreciated.

Thank you,
Bryan

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.

  1. Testing For Plugin Conflict
  2. Theme Update
  3. Child Theme
  4. 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.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.