Again, I need your help...
To my detail template, I need to pass a parameter {category_alias} to present other products in this category currently we are. I tried the [ListIt2Loader], but unfortunely it passes the category name - not the category alias.
My template looks like this:
Code: Select all
...
{if !empty($item->fielddefs)}
{foreach from=$item->fielddefs item=fielddef}
{if $fielddef.type == 'Categories' && ($fielddef.value != '')}
{ListIt2Loader item='category' force_array=1 value=$fielddef.value assign='cats'}
{/if}
{/foreach}
{/if}
{ListIt2Oferta template_summary="rotator" detailpage="66" category="{$cats}"}
...
Someone has an idea?

