Extend Shipping Class Cost math
-
I’d like to be able to charge a shipping price for every 2 items in the basket for a particular product. The product is linked to the shipping cost by shipping class. In the following example I have:
Shipping Class = “per every 2 items”
Shipping Cost per 2 items of £3.20There are many ways to do this, but the calculation I would use is:
[qty]*1.60 + ([qty]%2)*1.60
I don’t want to ue a plugin for thsi simple finctinality. The core product does not allow the modulus opertaor though, so I’ll probably need to create a hook in my themes functions file to achieve it.
Any help appreciated
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Extend Shipping Class Cost math’ is closed to new replies.