Ride Theme - How to change "Buy it now" button text

I am trying to create a product template in the Ride theme on Shopify so I can change the “Buy it now” text on the buy button of the product. I have done it before when dealing with a .liquid based theme, but on the Ride theme the product template is JSON. I have no idea what to do with this JSON code. Here is the JSON code that displays the buy button and add to cart button in the Ride theme.

"buy_buttons": {
      "type": "buy_buttons",
      "settings": {
        "show_dynamic_checkout": true
      }
    },

What do I do here, in the theme.liquid file, or anywhere else so that I can change the text on the buy button?

1 Like

Hi @CryptoWhales ,

It is in the sections now for Shopify 2.0 themes. You can change the add to cart text in two ways, depending on your comfort zone.

Change without code

  1. From your Admin Page, click Online Store > Themes >Actions > Edit Language
  2. In the textfield, type add to cart
  3. It will open the window same as below, you can then change the Add to cart in the below textfield. The Change me here in the image. Click SAVE

Change with code

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Section folder, open the main-product.liquid
  3. Find the code below and replace it to the text you want
{{ 'products.product.add_to_cart' | t }}

The question was How To Change “Buy It Now” Button Text???