Help Menu Manager
Posted: Mon Nov 24, 2014 10:55 pm
				
				Hi. I'm running CMS Made Simple 1.10.3 - PHP 5.4.26 - MySQL 5.5.40 and Apache/2.2.26 (unix).
The module is Menu Manager 1.7.7
I can place a {menu} tag inside another template menu?
I know it sounds strange but a jquery plugin LiteTooltip use this submenu structure:
I was unable to change the template to fill the structure that the plugin asks, so I thought I'd leave the structure of the normal template and add another {menu} tag to bring the data to the submenu.
Works but the above code show the last children menutext on the parent menutext.
Is there any parameter I should change when calling the submenu to operate without changing the parent MenuText?
Look a preview image:

Thanks for any help.
Régis
			The module is Menu Manager 1.7.7
I can place a {menu} tag inside another template menu?
I know it sounds strange but a jquery plugin LiteTooltip use this submenu structure:
Code: Select all
<ul class="MENU">
  <li>
    <a href="javascript:void(0);" class="submenu" data-title='
      <div class="tooltip-menu">
        <ul>
          <li><a href="">Children 1</a></li>
          <li><a href="">Children 2</a></li>
          <li><a href="">Children 3</a></li>
        </ul>
      </div>
    '>PARENT MENU
    </a>
  </li>
</ul>
Code: Select all
<ul class="MENU">
  <li>
    <a href="javascript:void(0);" class="submenu" data-title='
      <div class="tooltip-menu">{menu template="submenu" start_level="2"}</div>
    '>PARENT MENU
    </a>
  </li>
</ul>
Code: Select all
<ul class="MENU">
  <li>
    <a href="javascript:void(0);" class="submenu" data-title='
      <div class="tooltip-menu">
        <ul>
          <li><a href="">Children 1</a></li>
          <li><a href="">Children 2</a></li>
          <li><a href="">Children 3</a></li>
        </ul>
      </div>
    '>Children 3  <---------- HERE MUST BE "PARENT MENU"
    </a>
  </li>
</ul>
Look a preview image:

Thanks for any help.
Régis