Remove PHP warning
-
I was getting this error:
PHP Warning: Undefined array key “navbar-split” in public_html/wp-content/plugins/woocommerce-ajax-filters/main.php on line 1575
on this line:
$sidebars_widgets = $sidebars_widgets[$index];It can be solved by doing this check first:
if(array_key_exists($index, $sidebars_widgets)){
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Remove PHP warning’ is closed to new replies.