Return to Snippet

Revision: 22792
at January 22, 2010 11:06 by SmpleJohn


Updated Code
{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}

Revision: 22791
at January 22, 2010 11:00 by SmpleJohn


Initial Code
{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}

Initial URL


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

Initial Title
Prestashop 1.2.5 features list

Initial Tags


Initial Language
PHP