need code / script for Sold Out product page redirect for Envy 33.8.0 theme.

need code / script for Sold Out product page redirect for Envy 33.8.0 theme.

LookandAdorn
Tourist
14 0 1

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. 

Replies 5 (5)

ES1
Shopify Partner
253 24 28

Hi @LookandAdorn 

 

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.

 

If this fixed your issue, Please Like and Accept as a Solution.
Looking for assistance? Hire an experienced Shopify Partner! Visit EcommerceStorez.us today for a quick quote.
Seeking an elegant theme designed to boost conversions? Explore our High-Converting Shopify Themes today!

LookandAdorn
Tourist
14 0 1

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. 

TheScriptFlow
Shopify Partner
709 49 93

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!

- Need a Shopify Specialist? Chat on WhatsApp Or Email at info@thescriptflow.com

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


- If my solution was helpful, mark it as a solution and hit the like button! And Wait Don't forget to Buy me a Coffee

LookandAdorn
Tourist
14 0 1

lookandadorn.com

LookandAdorn
Tourist
14 0 1

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