This message returns when you choose delivery type as "Not Free" and input free shipping thresholds.
Please set "freeShipOverAmount" as 0 KRW.
<Delivery Type>
- Initial shipping fee on return (deliveryChargeOnReturn): Customer-borne delivery fees on return for free shipped products whose initial delivery fees were borne by the seller.
- Delivery Fee on Return (returnCharge): One-way delivery fees on return
- Basic delivery Fee (deliveryCharge): Customer-borne delivery fees for conditional free shipping
* Note:
Above three are all one-way delivery only, and you should set the delivery fees in accordance with the delivery fee criteria.
<For free shipping>
- Set the amounts for Initial Shipping Fee on Return and Delivery Fee on Return.
- You must set both of the Basic delivery fee and the free shipping threshold as 0 KRW.
- For a return, a customer will be charged with "Initial Shipping Fee on Return + Delivery Fee on Return".
<For Not-Free shipping>
- Set the amounts for Basic Delivery Fee and Delivery Fee on Return.
- You must set both of the Initial Shipping Fee on Return and the free shipping threshold as 0 KRW.
-
<Example for Not-free shipping>
deliveryChargeType: "NOT_FREE",
deliveryCharge: 2500,
freeShipOverAmount: 0,
deliveryChargeOnReturn:0,
returnCharge:2500
<How to set conditional free shipping>
- Set the amounts for Basic Delivery Fee and Delivery Fee on Return.
- You must set the Initial Shipping Fee as 0 KRW.
- For a return, a customer will be charged with "Basic Delivery Fee + Delivery Fee on Return".
<Example for conditional free shipping with threshold of 10,000 KRW>
deliveryChargeType: "CONDITIONAL_FREE",
deliveryCharge: 2500,
freeShipOverAmount: 10000,
deliveryChargeOnReturn:0,
returnCharge:2500