Shopify themes, liquid, logos, and UX
Hi, I would like to add a button for download product images on the PDP for Impulse theme. Is it possible? When I am adding it css doesn't work on the button and also Javascript. How can I make it possible?
Hello Makka 🙂
Current product images.
Also can you provide a screenshot of where you want the button to be?
I have added already to the Dawn theme. right under descriptions. Same place if possible
can you provide link to the store? I will provide code for your theme once i review it
Hi @Burky ,
The following code should download the product image. However, as i do not know the exact selector of the button, I could not provide the complete code.
If you can provide me URL to the product page, i will provide the complete code for the store.
<script>
var imageUrl = document.querySelector('.product__thumbs a[data-product-thumb]').getAttribute('href');
var downloadLink = document.createElement('a');
downloadLink.href = imageUrl;
downloadLink.download = 'image.jpg';
downloadLink.click();
downloadLink.remove();
</script>
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025