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}