shanakaf
Results 1 - 1 of 1
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;
$amount=0;
//Flat rate handling fee
foreach($_SESSION['cart'] as $key=>$value)
{
$amount+= $value['quantity'];
}
$handling_fee = ($GLOBALS['CURRENCY']->convert( FLEX2_HAND_FEE ))*$amount;
