Skip to content
Advertisement

Rename “Select options” button on products archive for sold out products

I have a shop and each product that’s sold out is still referring to the product page despite it’s unavailability. The button “product options” still exists. So I found this code that’s supposed to change the “add to cart” button (which in my case is mostly ‘select options’ because most of my items are variable). I want to change the text on this button for sold out products only. I want it to state “Special order” or something. I want to refer them to an external page instead.

How can I do so?

JavaScript

Advertisement

Answer

The following snippet may guide you through the right path.

If the product is a variable product, check the stock status of all variations and get the value to an array. If all the variations of a variable product are out of stock, then the text can be changed to Sold Out. Also you can change the text based on the availability of variations in a variable product.

JavaScript

See the full snippet below.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement