Alex
Forum Replies Created
-
Sorry, you’re right, the export was done from my local dev environment. Problem solved. Thanks.
Alex
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Error thrown with update to version 2.9.4Sorry, I pasted original code.
This is the edited one:
$menu_filters_count = ( isset($wp_filter[‘wp_nav_menu_args’]) && is_array($wp_filter[‘wp_nav_menu_args’] ) ? count( $wp_filter[‘wp_nav_menu_args’] ) : 0 );I added isset condition.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Error thrown with update to version 2.9.3In 2.9.4 i fixed error:
Notice: Undefined index: wp_nav_menu_args in /wp-content/plugins/menu-image/menu-image.php on line 334
editing /wp-content/plugins/menu-image/menu-image.php and replace line 334 with:
$menu_filters_count = ( is_array($wp_filter[‘wp_nav_menu_args’] ) ? count( $wp_filter[‘wp_nav_menu_args’] ) : 0 );Cheers
AlexForum: Plugins
In reply to: [Menu Image, Icons made easy] Error thrown with update to version 2.9.4In 2.9.4 i fixed error:
Notice: Undefined index: wp_nav_menu_args in /wp-content/plugins/menu-image/menu-image.php on line 334
editing /wp-content/plugins/menu-image/menu-image.php and replace line 334 with:
$menu_filters_count = ( is_array($wp_filter[‘wp_nav_menu_args’] ) ? count( $wp_filter[‘wp_nav_menu_args’] ) : 0 );Cheers
Alex