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

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;
}