[Dawn Theme] Change "Add To Cart" Text + Disable It?

Topic summary

A user working with the Dawn theme needs to modify the “Add to Cart” button in two ways:

Requirements:

  • Change the button text from “ADD TO CART” to custom text
  • Keep the button visible but make it unclickable/disabled

Solution provided:

For changing button text:

  • Navigate to Online Store → Edit default theme content
  • Select the Products tab in Theme content
  • Update the text as needed

For disabling the button:

  • Go to Online Store → Theme → Edit code
  • Open Assets/base.css
  • Add CSS code at the bottom of the file:
.product-form__submit {
  pointer-events: none;
}

The response includes screenshots showing the navigation path, though the actual text in the original post appears corrupted or reversed.

Summarized with AI on November 23. AI used: claude-sonnet-4-5-20250929.

Hello,

I’m using DAWN THEME.

How do I change the text on the button that usually says ‘ADD TO CART’ ? I want to change it to something else?

Also, how do I keep the button, but disable it? Making it un-clickable?

Thank you so much!

Hi @Alex3251

May I suggest to update code these steps:

  • For update Add to cart text
  1. Go to Store Online-> Edit default theme content

  1. In the Them content → select Products tab

  1. Update text
  • For Making button un-clickable
  1. Go to Store Online-> theme → edit code
  2. Assets/base.css
  3. Add code below to bottom of file
.product-form__submit {
	pointer-events: none;
}