Is it possible to have conditionals for calculating shipping costs?
I only have one product (a photographic print) but that product has options...
Size (16"x24", 20"x30", etc)
Paper (the type of paper used)
Mounting
Past a certain size shipping a mounted print flat (vs. rolled) becomes prohibitively expensive so I want something along the lines of:
if( (shipping_size >= 30x40) & (mount == true) )
{
shipping_price += $30.00;
}
If that didn't make sense...
If the shipping size is greater than or equal to 30"x40" and the client wants the print mounted then add $30 to the shipping cost.
Is this possible?
Cheers, Joe


Reply With Quote

