I can’t seem to find any information on how to achieve this, but it seems like something that has to exist (it doesn’t make any sense for it not to). I’m open to using GraphQL or REST, but REST is definitely preferred.
Essentially I’m looking for a way to assign a shipping method to a variant (or at the product-level which would be easier) at a flat rate that’s charged per unit ordered. I’ve found Delivery Profiles and it appears to only charge the shipping price once per order.
As an example, this is what I want:
- Item 1 (Quantity: 5) - Shipping price: $10
Shipping total: $50
This is what’s happening:
- Item 1 (Quantity: 5) - Shipping price: $10
Shipping total: $10
Any and all help is appreciated, have been trying to figure this out since last week to no avail. Trying to avoid using hackish or unreliable methods to achieve this.
Side note: the Carrier Service API is out, I need a solution that works for all stores.