/ Published in: PHP
This returns any custom features added in the Prestashop shopping cart.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
{if $features} <!-- product's features --> <ul> {foreach from=$features item=feature} <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/foreach} </ul> {/if}