Tips and Tricks HQ Support Portal › Forums › Simple PayPal Shopping Cart › Simple Shopping Cart Tweaks › Free Shipping for Quantity > 1 › Reply To: Free Shipping for Quantity > 1
December 13, 2009 at 9:36 pm
#16641
Member
It seems to have worked out great.
I just replaced $item_total_shipping += $item * $item; with
if ($item > 1)
{
$item_total_shipping += 0;
}
else
{
$item_total_shipping += $item * $item;
}
Now whenever someone buys > 1 product, their shipping is free.
**I also had to make the base shipping 0.00 and use the individual buy buttons to add the shipping fee.
Thank you for your help.