-1

I want to change string on Add to Cart button

I want to change the label string on Add to Cart button. In attached image Thanks.

Mirza Obaid
  • 1,707
  • 3
  • 23
  • 35
M Tahir Noor
  • 443
  • 2
  • 10
  • 31

1 Answers1

1

Use Xpath to locate and replace it like this:

<xpath expr="//a[@id='add_to_cart']" position="replace">

    <a id="add_to_cart" class="btn btn-primary btn-lg mt8 js_check_product a-submit" href="#">Your custom text</a>

</xpath>
danidee
  • 9,298
  • 2
  • 35
  • 55