Hi
I use some static pages for different conferences and I’m looking to include them on
the navigation block, but I’m looking to switch between them, depending on (i.e.) SchedConfID or another known variable …
I mean something like this:
{if $schedConfId==1}
<li>»<a href="{url page="pages" op="view" path="path_01"}">{translate key="schedConf.submission"}</a></li>
{/if}
{if $schedConfId==2}
<li>»<a href="{url page="pages" op="view" path="path_02"}">{translate
key="schedConf.submission"}</a></li>
{/if}
or like this:
{if $schedConfShowCFP}
<li>» <a href="{url page="pages" op="view" path="CFP_".$schedConfId}">{translate
key="schedConf.cfp"}</a></li>
{/if}
Is it possible? How can I do it ?
Thanks a lot
Luis