1. Home
  2. Docs
  3. GURANSH
  4. Theme Features
  5. Bugs
  6. out of stock – add to cart

out of stock – add to cart

JavaScript method

If you’re facing an out-of-stock product with the Add to Cart button still visible, copy and paste the JavaScript below into your site script manager.

<script> 
const style = document.createElement('style');
style.textContent = `
  .add-to-cart-wrapper[productoutofstock] {
    display: none !important;
  }
`;
 
const footer = document.querySelector('footer');
if (footer) {
  footer.appendChild(style);
} else { 
  document.body.appendChild(style);
}
</script>