Dynamic Shipping via Stripe [Beta]
Dynamic shipping is a beta feature in Chord and Stripe. Enabling this feature means Chord Autonomy brands understand the potential risks associated with using beta software.
Chord OMS handles the logic to display correct shipping methods to customers during Stripe checkout. Although customers were able to choose their preferred shipping method, Stripe lacked the ability to provide shipping rates based on the shipping address. This meant merchants must either undercharge or overcharge shipping to customers.
Now, with Stripe’s dynamic shipping option, Stripe can display shipping rates based on an order’s shipping address.
Additionally, international customers will be able to enter their international address and the correct shipping options will be presented to them with Stripe’s dynamic shipping feature.
One current limitation of this beta feature is that Link is currently disabled for sessions using this dynamic shipping logic. Stripe aims to add support for Link and dynamic shipping options in the coming weeks.
At this time, this Dynamic Shipping feature is only available to Chord Autonomy customers who have Stripe’s embedded checkout enabled.
Dynamic Shipping is only available to customers using Embedded Checkout. If you do not have Embedded Checkout enabled for your store, follow the steps outlined here to turn this feature on for your store.
Shipping zones specify the geographic regions where a shipping method is available. An order will only be assigned a shipping method if its billing address matches one of the shipping zones assigned to the method.
Please refer to the Chord documentation website for instructions on creating shipping zones and assigning shipping methods to shipping zones.
The dynamic shipping options are fetched from the shipping methods set in Chord OMS. Ensure that these options are up-to-date in order for them to display accurately via Stripe checkout!
Since shipping zones can be configured at both the country and state level, it is recommended to provide a default zone that covers the entire country/countries to catch orders that where a more specific shipping method/zone is not defined.
Note that the following STRIPE_ALLOWED_COUNTRIES setting under Store Settings should also be set to the correct country as well:
If you already have Embedded Checkout enabled for your store:
- Log into the Chord OMS.
- Navigate to Settings and click Store Setup.
- Add/change the STRIPE_DYNAMIC_SHIPPING_OPTIONS setting to Enabled.
If you are not starting off with a new installation of our NextJS Starter, you will need to make updates to your store’s website to integrate the dynamic shipping options.
Stripe will require you to assign a callback to onShippingDetailsChange when initializing the embedded checkout, like so:
Here is an example implementation of handleShippingDetailsChange
- Question: The incorrect shipping method is presented to a customer! What can I do to fix this?
- Answer: Review the shipping zones and how they are assigned to shipping methods in Chord OMS. It is possible that the customer entered a shipping address that does not correspond to any shipping zone.