one of my install of wb 2.8.1 have a strange behavior with show_menu2...
the first menu would not allow
show_menu2(1,SM2_ROOT+1, SM2_ALL, SM2_ALL|SM2_BUFFER,'[li][a][menu_title]</a>','</li>','[ul]','</ul>','<ul id="nav" class="dropdown dropdown-horizontal">');
and would output something like
<ul id="nav" class="dropdown dropdown-horizontal"></ul><ul><ul class="menu-top">... rest of the good code
i've circumvent this problem with this code :
$lemenu = show_menu2(1,SM2_ROOT+1, SM2_ALL, SM2_ALL|SM2_BUFFER,'[li][a][menu_title]</a>','</li>','[ul]','</ul>');
echo str_replace('<ul class="menu-top">', '<ul id="nav" class="dropdown dropdown-horizontal">',$lemenu);
but now, we need to add multimenus (activated) with 1 and 2...
no... other... show_menu(X will f'ing work...
I've included the template... I dont event know what to do anymore, normaly I have no problems, but this template is a b...
any clue?