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:

  1. Settings
  2. Advanced settings
  3. App integrations
  4. Select the subscription app you are using
  5. 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

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.