All things Shopify and commerce
Can anyone help me to provide code / script for Sold Out product page redirect for Envy 33.8.0 theme.
Once product is sold out it will be redirect to relevant collection page or homepage
and once back in stock redirection will be stopped.
Things such as these are best handled by Shopify partners as it needs to be looked at after logging into your individual store, so you can hire one, however, if you want the script and want to do it on your own, then you can add the below either in product.liquid or main-product.liquid depending on your theme structure
<script>
document.addEventListener("DOMContentLoaded", function() {
var productForm = document.querySelector('form[action="/cart/add"]');
if (productForm && productForm.querySelector('button[type="submit"]')) {
var addToCartButton = productForm.querySelector('button[type="submit"]');
if (addToCartButton && addToCartButton.disabled) {
// Redirect to collection page if available, else to homepage
var collectionUrl = document.referrer.includes('/collections/') ? document.referrer : "/";
window.location.href = collectionUrl;
}
}
});
</script>
The script may require some polishing but as mentioned it can only be done by looking at your theme structure.
Hope this help, if you still need further help, you can DM us.
attached product liquid file.
https://drive.google.com/file/d/1KByMwvbi1TNrcs8JzFYi3rrCbPpTo0gA/view?usp=drive_link
please check the same and help us to update script.
Hi @LookandAdorn,
Could you please share your Store URL and password (if applicable) so that I can review it and provide you with the appropriate solution code?
Looking forward to your response.
Thanks!
lookandadorn.com
attached product liquid file.
https://drive.google.com/file/d/1KByMwvbi1TNrcs8JzFYi3rrCbPpTo0gA/view?usp=drive_link
please check the same and help us to update script
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025