WebsiteBaker Community Forum
WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: apple on June 20, 2013, 09:26:44 AM
-
Hi I am trying to look for a template or make my present template to show the 2nd menu on all pages. How do I do that? Can anyone show point me to an existing discussion or show me how? Thanks.
-
You can use:
show_menu2(0, SM2_ROOT+1, SM2_START);
See: Tutorial link removed 404
-
Thanks. It is stil not showing on all pages. It only show when the parent is selected. Is there something else missing?
-
You could use:
<?php show_menu2(0, SM2_ROOT+1, SM2_START,SM2_ALL); ?>
It shows all pages that are on the second level.
If only want to show child pages of a specific page you could use specchild just lke mdemaree99 says:
specchild
Children of a specific page (page = Cogs)
show_menu2(0, 9, SM2_ALL, SM2_ALL);
The second number (9 in the example) is the id of the parant page.
-
I was thinking this route...
specchild
Children of a specific page (page = Cogs)
show_menu2(0, 9, SM2_ALL, SM2_ALL); [page_id of Cogs is 9]
•Little
•Big
-
Tested my method it didn't work.
Changed it to a working method.. see my post above.
-
Don't know if I understand your question correctly, but try this:
<?php // second menu
show_menu2(2, $wb->page['root_parent'], SM2_ALL, SM2_ALL | SM2_PRETTY); ?>
Regards,
Vincent