A store owner wants to customize product button text for specific items only, without affecting all out-of-stock products globally.\n\nDesired Changes:\n- \
Summarized with AI on November 18.
AI used: claude-sonnet-4-5-20250929.
I would like to change the “Sold Out” text on the button to “Custom Order Only” and the “Unavailable” button text to “Contact Us”.
A rule which applies to selected products ONLY (shown in purple). I do not want to change this rule that affects all products that are out of stock or 0 in stock.
Would I need to create a tag for these products and enable an IF code for this? If I need to make a tag for this, I would like to name this tag as “bulky”.
Yes you can go with tag or a metafield option through which you can select in which product condition will apply.
And after that find the code of the elements you want to change.
e.g.
If you want to change button unavailable to contact us then condition will be
{% if metafiel.custom.value %}
// show your custom button
{% else %}
// default button
{% endif %}
same logic will works for other elements.