Goal: Change the “Add to cart” button text to “Pre-order” for a single product in Shopify’s Dawn 9.0 theme.
Key points and proposed solutions:
No built-in per-product setting exists. It requires theme code changes or an app.
Create a dedicated product template for pre-order items and assign it to the specific product (Shopify template guide linked). Using a template suffix like “pre-order” lets you target only that product.
Code approach: keep the default translation key in the product template, but in theme.liquid conditionally set the addToCart label. Example logic: if template.suffix == ‘pre-order’, output “Pre-order”; else use the default translation. Note: example code shared is untested and requires care (e.g., commas in JSON object).
Alternative targeting: edit product.liquid and use the template handle or Liquid checks (product ID or tags) to swap the button text for that product only.
App option: a pre-order app (e.g., K1 PreOrder) can automate button replacement and logic, avoiding manual maintenance.
Status: The OP can edit Liquid and asked for specifics. Multiple approaches provided; no confirmed implementation or resolution yet.
I’m looking for a way to change the button ‘‘Add to cart’’ for ‘‘Pre order’’ on a specific product but so far nothing works or it does it for the whole website.
@514rpm - open product.liquid page and check template handle… if this handle matches this specific product which you want, then you can change the text
you can refer to the code given by @dmwwebartisan … exact code is difficult to provide here as we do not know what has been used in product liquid file