Does Buunto – Date & Time Slot integrate with subscription apps?
If you run subscription programs in your store using apps such as the Appstle℠ Subscriptions App, our app can integrate with it.
How does that work?
After an order for a subscription product is made, when the next subscription order comes in, our app overrides the initial order date selection with a new one. If the initial date was on a Tuesday, the new date in the subsequent order will be the first available Tuesday after the creation date unless that date is unavailable, according to the settings you have configured within the Buunto – Date & Time Slot app.
How do I enable the integration?
You need to go to:
- Settings
- Advanced settings
- App integrations
- Select the subscription app you are using
- Click Save
How do I hide the initial order date in subsequent Order Confirmation emails for customers?
Due to how information flows in subsequent orders, the new order confirmations may always come through with the first order's delivery date. The snippet below allows hiding it from your subscription orders:
{% assign is_subscription_order = false %} {% for line in order.line_items %} {% if line.selling_plan_allocation %} {% assign is_subscription_order = true %} {% break %} {% endif %} {% endfor %} {% unless is_subscription_order %} [Email confirmation snippet goes here] {% endunless %}
The [Email confirmation snippet] is here: Show the date/time on the customer order confirmation email.
To have in mind
- If the new date to be added is exceptionally unavailable or has reached the daily order limit, the next available date/day will be assigned to the order.
- If you see that this is not behaving as expected, don't hesitate to contact our support team at support@buunto.com.