Prestashop 1.2.5 features list


/ Published in: PHP
Save to your folder(s)

This returns any custom features added in the Prestashop shopping cart.


Copy this code and paste it in your HTML
  1. {if $features}
  2. <!-- product's features -->
  3. <ul>
  4. {foreach from=$features item=feature}
  5. <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li>
  6. {/foreach}
  7. </ul>
  8. {/if}

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.