I want to print tag on each product thumbnail in the product list of my prestashop store. I tried adding the following code in product-list.tpl
<span class="tptag btn btn-danger">
{foreach from=Tag::getProductTags($product.id_product) key=k item=v}
{foreach from=$v item=value}
<a href="{$link->getPageLink('search', true, NULL, "tag={$value|urlencode}")}">{$value|escape:html:'UTF-8'}</a>
{/foreach}
{/foreach}
</span>
But it fetching nothing. How can i display the tags.?