The Joomla! Extensions Directory ™

shanakaf

Reviews(1)
 
byshanakaf, September 13, 2010
1 of 1 people found this review helpful
wow really this is a great plug-in....... Thanks a lot guys for the grt work.. Also here I'm going to put a code that i used to change the total amout of the shipping according to nuber of products. Some times this will help u..

$amount=0;
//Flat rate handling fee
foreach($_SESSION['cart'] as $key=>$value)
{
$amount+= $value['quantity'];
}
$handling_fee = ($GLOBALS['CURRENCY']->convert( FLEX2_HAND_FEE ))*$amount;