Undefined index error messages

Hello,

We have recently manually updated X theme on http://www.flipchartsdirect.com/.

We are having issues with multiple error codes around our site:

Notice: Undefined index: wpdsw in /web1/user51935/website/wp-content/themes/x-child-ethos/functions.php on line 19
Notice: Undefined variable: fade_duration in /web1/user51935/website/wp-content/themes/x/framework/functions/global/plugins/visual-composer.php on line 5173

Those are just two of them.

Could you please let us know how to fix these problems.

Many thanks,

Nick

Hello There,

Thanks for writing in! What you are seeing are just PHP Notices. These usually appears when PHP variable was not initialized. To get rid of these notices, please disable the debug mode. You can do this by opening wp-config.php and adding define( 'WP_DEBUG' , false ); just above /* That's all, stop editing! Happy blogging. */

For example:

define('WP_DEBUG', true);

/* That's all, stop editing! Happy blogging. */

When you revisit the page, you should no longer be seeing the notices.

Please let us know how it goes.