You are here: Home
Support site for Tips and Tricks HQ premium products
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.
@amin007, thank you. That would be great. Please let me know what I need to do.