Sky Pilot automatically adds a download button to your Checkout page. This will help customers access files directly after purchase. If this is not the case for your theme once you install the app, follow the instructions below to add it:
1. Go to Your Shopify Checkout settings and click on Customize in the first tab
2. Navigate to the 'Thank you' page template and click on Add app block
3. Select 'Sky Pilot - Access Digital Files' and click Save
By default, the button is labelled ‘’Access Digital Content", but you can change this label to anything you want in your Sky Pilot Settings. To do so, follow these steps:
1. Open the Settings tab and click on Delivery Settings
2. Scroll all the way down and find the Button Text field, update the wording per your preference and click Save
Sending download links in Shopify order confirmation
It is possible to send download links in your standard Shopify order confirmation emails. To enable this setting, follow the steps below:
1. Disable Sky Pilot emails
a) Go to Email settings
b) Uncheck "Notify Customers of digital content via email" and click ‘’Save’’
c) Allow Sky Pilot to tag your products so you can identify whether the order includes a digital item so you can include a link to access the digital products.
2. Add download link to Shopify order confirmation
a) In your Shopify settings, head over to Your Order Confirmation Email Template
b) Add the following snippet to your order confirmation template (if you need help with this, we're available 24/7, just reach out and we'll assist):
{% assign with_digital_files = false %}
{% for line_item in line_items %}
{% assign variant = line_item.variant %}
{% assign product = variant.product %}
{% assign variant_tag = "variant-<variant-id>-has-digital-downloads" | replace: "<variant-id>", variant.id %}
{% if product.tags contains variant_tag %}
{% assign with_digital_files = true %}
{% endif %}
{% endfor %}
{% if with_digital_files %}
<a href="https://{{shop.domain}}/apps/downloads/customers/{{ order.customer.id }}/orders/{{ order.id }}/shopify_show" class="btn">
Download My Purchases
</a>
{% endif %}