Jump to content

Put "Data Sheet" UNDER "More information"


Recommended Posts

Hello

 

I suppose the easiest way is to go to product.tpl and move that section below the more info section, I have just tried it

 

Before

http://screencast.com/t/spIQC8sRS6

 

After

http://screencast.com/t/wJdgLa04lP

 

You will find this code around Line 471 (assuming you are using default theme) the More Info section is directly below this

 

<!-- Data sheet -->
<section class="page-product-box">
<h3 class="page-product-heading">{l s='Data sheet'}</h3>
<table class="table-data-sheet">
{foreach from=$features item=feature}
<tr class="{cycle values="odd,even"}">
{if isset($feature.value)}
<td>{$feature.name|escape:'html':'UTF-8'}</td>
<td>{$feature.value|escape:'html':'UTF-8'}</td>
{/if}
</tr>
{/foreach}
</table>
</section>
<!--end Data sheet -->
 
Paul
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...