Jump to content

how to display the different tags in the product web page?


Recommended Posts

Try putting this in product.tpl in your theme's directory:

{foreach from=$product->tags key=lang item=tags}
   {if $lang == $cookie->id_lang}
       {foreach from=$tags item=tag name=tags}
           {$tag}{if !$smarty.foreach.tags.last},{/if}
       {/foreach}
   {/if}
{/foreach}



This will display the tags of the current language. Just put it in a <p> in product.tpl.

Link to comment
Share on other sites

  • 3 years later...
×
×
  • Create New...