Jump to content

Remove total weight from the shopping cart


huggettm

Recommended Posts

  • 2 weeks later...

Guest Roger Huston

anyone know how to remove the weight that is displayed on the shopping cart?

You could simply go to the cart.tpl for your skin and find it in the html and remove it.

/skins/Your Skin/styleTemplates/contnet/cart.tpl You are looking for somthing close to this:

		   <tr>

				<td colspan="6"><strong>{LANG_BASKET_WEIGHT}</strong> {VAL_BASKET_WEIGHT}</td>

				<td align="right">{LANG_SHIPPING}</td>

				<td width="60" align="right">{VAL_SHIPPING}</td>

			</tr>




replace the row with the weight in it with &nbsp; - don't delete otherwise it will mess up the formatting.




			<tr>

				 <td colspan="6">&nbsp;</td>

				 <td align="right">{LANG_SHIPPING}</td>

				 <td width="60" align="right">{VAL_SHIPPING}</td>

			 </tr>

- Roger

Link to comment
Share on other sites

  • 6 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...