You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serpentsoft edited this page Sep 9, 2013
·
3 revisions
Thanks for awesome work,
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'; }
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