Hi All,
I use the webshop module (esshop) and I want to set a differtent for every category. There are 2 cats at the moment so I wanted to do this in the Main Template with Smarty.
But this doesn't work
{if page eq Webshop}
{if CategoryID eq 1)
Something
{else}
Something else
{/if}
{else}
{sitename} - {title}
{/if}
Is there a way I van findout which vars are known by smarty when parsing the template?
Smarty in Template page vars
Re: Smarty in Template page vars
Every variable should have the sign "$" at firstChris wrote: {if page eq Webshop}
{if $CategoryID eq 1)
Something
{else}
Something else
{/if}
{else}
{sitename} - {title}
{/if}

Use {get_template_vars} tagIs there a way I van findout which vars are known by smarty when parsing the template?
