Small bug
-
Hi, thanks for this usefull plugin !
I had a small bug, I don’t know why, here is the problem when I setup my megamenu :
Notice: Undefined index: menu_icon in …./wp-content/plugins/ap-mega-menu/inc/frontend/WPMegamenuWalker_Class.php on line 203I fixed that by replacing into WPMegamenuWalker_Class.php :
if (!isset($settings['general_settings']['menu_icon']) && $settings['general_settings']['menu_icon'] != 'disabled' || $settings['general_settings']['menu_icon'] != '') {
By
if (!isset($settings['general_settings']['menu_icon']) || $settings['general_settings']['menu_icon'] != 'disabled' || $settings['general_settings']['menu_icon'] != '') {
Hope it could help.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Small bug’ is closed to new replies.