Jump to content

How to Show Product Weight


Recommended Posts

Dear all,

I am using Presta 1.6 and I just want to show Product Weight at product page and Total weight of cart.

Please Help as only after this I can offer Weight wise shipping to my Customer.

 

themes\yourtheme\product.tpl - file.

Find this code is



<h1 itemprop="name">{$product->name|escape:'html':'UTF-8'}</h1>
<p id="product_reference"{if empty($product->reference) || !$product->reference} style="display: none;"{/if}>
<label>{l s='Model'} </label>
<span class="editable" itemprop="sku">{if !isset($groups)}{$product->reference|escape:'html':'UTF-8'}{/if}</span>
</p>

add after: 

<div class="product_weight">
<label>{l s='Product weight: ' js=1}{printf("%.2f",$product->weight)}
&nbsp{Configuration::get('PS_WEIGHT_UNIT')} </label>
</div>
Edited by Galo (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...