View Single Post
  #1  
Old 11-17-2005, 08:23 AM
 
Realsecurity Realsecurity is offline
 

Senior Member
  
Join Date: Apr 2005
Location: Bexhill
Posts: 128
 

Default Weight removing from product page

This mod will remove the word Weight and figure of weight from the product pages, making this neater on the pages. The cart will still carry the weight calculation and gives correct shipping prices at checkout. There is other mods to show total weight at checkout wich makes things simpler.

The code below is a modification to what limited topics i have found on the forums, this code i messed around with and actually works now. V4.0.13 should work on other versions but make sure you back up the file first.

SKIN1/CUSTOMER/MAIN as some of you might find its saves searching your directory for the file......

MAKE copy of the file first Product.tpl, then:

Find in your Product.tpl file the code below:

if $product.weight ne "0.00"}<TR><TD width="30%">{$lng.lbl_weight}</TD><TD nowrap><SPAN id="product_weight">{$product.weight}</SPAN>{$config.General.weight_symbol}</TD></TR>{/if}

and replace with:

if $product.weight ne "0.00"}<TR><TD width="30%">{*$lng.lbl_weight*}</TD><TD nowrap><SPAN id="product_weight">{*$product.weight*}</SPAN>{*$config.General.weight_symbol*}</TD></TR>{/if}

This will then REMOVE the word Weight, REMOVE the Number in weight and REMOVE the symbol weight g or Kg lb etc.....

Hope this helps, spent many hours searching for a solution in the end messed around with the script me self.
__________________
SURECOM XCART V4.1.8
Reply With Quote