WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: applepie on June 20, 2013, 09:26:44 AM

Title: 2nd menu show on all pages
Post by: applepie 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.
Title: Re: 2nd menu show on all pages
Post by: nibz on June 20, 2013, 12:34:26 PM
You can use:
Code: [Select]
show_menu2(0, SM2_ROOT+1, SM2_START);

See: Tutorial link removed 404
Title: Re: 2nd menu show on all pages
Post by: applepie on June 20, 2013, 01:24:04 PM
Thanks. It is stil not showing on all pages. It only show when the parent is selected.  Is there something else missing?
Title: Re: 2nd menu show on all pages
Post by: nibz on June 20, 2013, 02:42:04 PM
You could use:
Code: [Select]
<?php show_menu2(0SM2_ROOT+1SM2_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.
Title: Re: 2nd menu show on all pages
Post by: mdemaree99 on June 20, 2013, 06:53:48 PM
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
Title: Re: 2nd menu show on all pages
Post by: nibz on June 20, 2013, 08:43:33 PM
Tested my method it didn't work.

Changed it to a working method.. see my post above.
Title: Re: 2nd menu show on all pages
Post by: Vincent on June 21, 2013, 12:58:24 PM
Don't know if I understand your question correctly, but try this:

Code: [Select]
<?php  // second menu
    
show_menu2(2$wb->page['root_parent'], SM2_ALLSM2_ALL SM2_PRETTY); ?>

Regards,
Vincent