Frontend

Its possible for customer to see all their digital assets

All customer need to do is to log into their account and go to the following url

/apps/digital-assets-manager

Digital assets listing on other page - e.g Account area

Its possible to list digital assets list on other page by add on the follow snippet to the any page's liquid file

{% render 'shopify://apps/digital-asset-manager/snippets/digital-assets-manager/7dae70ad-9f74-455e-90f5-4d97d948ec86' %}

If the above shopify snippet doesn't work, then you will have to put in the following code

<script type="text/javascript">
{% if customer %}
	window._dam_customer_id = {{ customer.id | json }};
{% endif %}
</script>

<div id="_dam_root"></div>
<script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/varify-dam/static/frontend/js/frontend.js"></script>

Last updated