Skip to content

Fix Multi Levels Bootstrap Menu and Open on Mouse Hover

Serpentsoft edited this page Sep 9, 2013 · 3 revisions

Thanks for awesome work,

  1. but there's an issue in multi level menu (it's not open) .. replace line: if($args->has_children) { $class_names .= ' dropdown'; } with: if($args->has_children && $depth === 0) { $class_names .= ' dropdown'; } elseif($args->has_children && $depth > 0) { $class_names .= ' dropdown-submenu'; }

  2. Hover Dropdown Menu To open menu on hover use (bootstrap-hover-dropdown.js) from (CWSpear) and .. replace line: $atts['data-toggle'] = 'dropdown'; with: $atts['data-hover'] = 'dropdown';

and thanks again for your work and your time .. hope to help

Clone this wiki locally