
Originally Posted by
stevesh
I could be mistaken, but I think the OP wants two shipping carriers and quotes therefrom on two different products in the same order. I still don't think that's possible.
Linked thread calls for adding multiple added fees to different classes of items
A bit of tweaking to a if/else would get different shipping quotes/methods for them
Code:
global $cart;
$chk_guns = $_SESSION['cart']->in_cart_check('master_categories_id','2');
$chk_rifles = $_SESSION['cart']->in_cart_check('master_categories_id','3');
$extra_handling_fee = ($chk_guns * 50) + ($chk_rifles * 35);