Step 1: Enable Customer Accounts in your Shopify store.
Find the Customer Accounts section
Select Accounts are optional
Click Save
Step 2: Add a "My Files/Videos" link to the "My Account" page
In this step you will add a link from the "My Account" page of your store to the page where the customer can view all of their past digital purchases.
This step in not required on pre-integrated themes such as Pipeline as it is already done for you.
Visit your shopify themes page
Click the "Actions" button
Select Edit Code
Select the customers/account.liquid template from the templates folder
Paste the following code. Placement of this code within customers/account.liquid is completely dependent on your Shopify theme and is different for every theme.
<p>
<a href="{% unless routes.root_url == '/' %}{{ routes.root_url }}{% endunless %}/apps/downloads/orders/{{customer.id}}" class="btn button">
My Downloadable Files
</a>
</p>
Step 3: (Optional) Add a link to digital goods in order history page
In this step you will add a link from the "Order History" page of your store to the page where the customer can view files or videos for that particular order.
This step in not required on pre-integrated themes such as Pipeline as it is already done for you.
Visit your shopify themes page
Click the "Actions" button
Select Edit Code
Select the customers/order.liquid template
Paste the following code. Placement of this code within customers/order.liquid is completely dependent on your Shopify theme and is different for every theme.
<p>
<a href='{% unless routes.root_url == '/' %}{{ routes.root_url }}{% endunless %}/apps/downloads/customers/{{customer.id}}/orders/{{order.id}}/shopify_show' class="btn button">
My Downloadable Files
</a>
</p>