Hi @redkite,
This is just a notice and shouldn’t affect your site functionality in any way, if you’re seeing this on frontend of your site I suggest disabling wp_debug or at least change it so it saves the messages in log file instead of showing it on frontend.
You can do that with this code instead of define(‘WP_DEBUG’, true); in your wp-config.php:
// Enable WP_DEBUG mode
define('WP_DEBUG', true);
// 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 );
I would however like our devs to check this notice anyways but I’m afraid that I’m unable to replicate this on my installation.
Could you provide me with some steps I could follow to replicate it?
Cheers,
Predrag
Thank you for using Custom Sidebars! I am going to close this ticket for now. If you provide further troubleshooting information we will look further into the issue. Thanks much.