WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: maxxis on September 23, 2009, 01:42:10 PM

Title: Current menu ID. How to display it
Post by: maxxis on September 23, 2009, 01:42:10 PM
Hi guys

Is there a way to display the menu id of the current page that you are on?

For example in info.php I have menu[3] defined as "support"

How do I detect that 3 in the template?

Is this possible?

I really need a way to do it otherwise Im screwed on the whole menu system. :mrgreen:
Title: Re: Current menu ID. How to display it
Post by: Luisehahne on September 23, 2009, 01:49:09 PM
include the info.php in your template. Thebn you have access to the variables

Dietmar
Title: Re: Current menu ID. How to display it
Post by: maxxis on September 23, 2009, 02:09:37 PM
Thanks

That will give me all the variable yes but how do I detect the menu id of the current page?
Title: Re: Current menu ID. How to display it
Post by: aldus on September 23, 2009, 02:52:58 PM
You can get this info from the $wb-object, e.g.
Code: [Select]
<?php

if ($wb->menu_number === 3) echo "call number 3";

?>


Regards
Aldus
Title: Re: Current menu ID. How to display it
Post by: maxxis on September 23, 2009, 03:02:40 PM
Just figured it out also.

Thanks so much for the help.

I found $wb->page['menu']; to do the trick