Re: Hide Weight
Quote:
Originally Posted by Tal
You can look in customer/main/product.tpl then find this:
Code:
{if $product.weight ne "0.00" || $variants ne ''}
<tr id="product_weight_box">
<td class="property-name">{$lng.lbl_weight}</td>
<td class="property-value">
<span id="product_weight">{$product.weight|formatprice}</span> {$config.General.weight_symbol}
</td>
</tr>
{/if}
and change it to
Code:
{*
{if $product.weight ne "0.00" || $variants ne ''}
<tr id="product_weight_box">
<td class="property-name">{$lng.lbl_weight}</td>
<td class="property-value">
<span id="product_weight">{$product.weight|formatprice}</span> {$config.General.weight_symbol}
</td>
</tr>
{/if}
*}
|
Thanks! works perfectly!
__________________
X-Cart v4.2.0
|