Quote:
Originally Posted by Tal
If your site is small, you can do something like this:
{if $cat eq '1'}
Affiliate stuff for category ID 1
{elseif $cat eq '2'}
Affiliate stuff for category ID 2
{elseif ( $cat eq '3' || $cat eq '4' ) }
Affiliate stuff that will show if in either cat #3 or 4.
{elseif $cat gte '5'}
Affiliate stuff that will show if in cat 5 or higher
{elseif $cat gt '5'}
Affiliate stuff that will show if in cat 6 or higher.
{/if}
|
so in
{elseif $cat eq '2'}
Affiliate stuff for category ID 2
I would put {elseif $cat eq'250'} or do I use =250
then here would put the affiliate code?
I have 15 categories with subs
how do I put multiple affiliates within one category?
Thanks Tal, I will have a play and see what happens.