Jump to content

[SOLVED] Product features grouped


Crezzur.com

Recommended Posts

The display of that page is defined in the file product.tpl in your theme directory.

 

Every theme provider may program things slightly different but usually it starts with somethings like

{if (isset($features) && $features)}
	{foreach from=$features item=feature}

So if you want a specific product differently you would have to make something like:

{if (isset($features) && $features)}
   {if $product->id == "1234"}
      make something nice....
   {else}
	{foreach from=$features item=feature}
Link to comment
Share on other sites

  • 1 month later...
×
×
  • Create New...