Jump to content

features of product


Recommended Posts

Hi all, it is possible show "features" of product in another position in product.tpl? Link is here http://www.autobaterie-adac.cz/index.php?id_product=121173&controller=product

 

I have presta 1.5.6.1

 

edit: i tried this

	{if isset($features) && $features}
		<!-- product's features -->
		<ul id="idTab2" class="bullet">
		{foreach from=$features item=feature}
            {if isset($feature.value)}
			    <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li>
            {/if}
		{/foreach}
		</ul>
	{/if}
 

But nothing happend.

Edited by tozi (see edit history)
Link to comment
Share on other sites

it's probably because you use

<ul id="idTab2" class="bullet">

it's a "tabs" feature, so it means that this block is visible only when "features" are selected in tab menu

 

change id="idTab2" to some other, or just remove it.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...