View Single Post
  #11  
Old 03-05-2010, 08:53 AM
 
just wondering just wondering is offline
 

X-Adept
  
Join Date: Oct 2006
Location: UK
Posts: 471
 

Default Re: display the total weight on the view cart page

Quote:
Originally Posted by lookformeb
----------------------------------------------------------------------------------
In /shipping/shipping.php, add:
Code:
$smarty->assign("total_weight_shipping",$total_weight_shipping);
after:
Code:
$total_weight_shipping = func_weight_shipping_products($products);
----------------------------------------------------------------------------------

Then, to call this simply edit /skin1/customer/main/cart_totals.tpl and place this wherever you want to show it:
Code:
{$total_weight_shipping}
This is slightly different on 4.3.1:

In /shipping/shipping.php, add:
Code:
$smarty->assign("total_weight_shipping_valid", $total_weight_shipping_valid);
after:
Code:
$total_weight_shipping_valid = func_weight_shipping_products($cart['products'], true, $all_products_free_shipping, false);
----------------------------------------------------------------------------------

Then, to call this simply edit /skin1/customer/main/cart_totals.tpl and place this wherever you want to show it:
Code:
{$total_weight_shipping_valid}
Reply With Quote