PDA

View Full Version : ...test for integration within adv_portal?


Albus
05-03-2008, 03:41 PM
I have a situation between normal pages and those wrapped in integration where I need to display the $navbar one of two way. How can I tell if I am in an integrated page?

adv_portal

...

<if condition="???"><div class="module">$navbar</div><else />$navbar</if>

...

Brian
05-03-2008, 03:51 PM
<if condition="$pages['name'] == 'page_identifier_here'">

(replace page_identifier_here with the Page Identifier for the page you use for integration)

Our Sponsors
 

Albus
05-03-2008, 04:03 PM
Thanks!