PrashantG Posted April 14, 2014 Share Posted April 14, 2014 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. Link to comment Share on other sites More sharing options...
Galo Posted April 16, 2014 Share Posted April 16, 2014 (edited) 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)}  {Configuration::get('PS_WEIGHT_UNIT')} </label> </div> Edited April 16, 2014 by Galo (see edit history) Link to comment Share on other sites More sharing options...
PrashantG Posted April 16, 2014 Author Share Posted April 16, 2014 But its not showing Correct weight and NO Weight on Cart Link to comment Share on other sites More sharing options...
Recommended Posts