Dawn product page title / add to cart button

  1. From your Shopify admin, go to “Online Store > Themes.”
  2. Find the theme that you want to edit, and click the “Actions” button next to it.
  3. From the dropdown menu, select “Edit code.”
  4. In the “Templates” folder, locate and click on the “product.liquid” file. This is the template that controls the layout and content of your product pages.
  5. Look for the section of the template that displays the product title and price. It should look something like this:
# {{ product.title }}
{{ product.price | money }}​

In above code {{ product.title }} is variable that displays product title and product.price shows prices. You need to adjust both variables.

Something like :

# {{ product.title }}

  {{ product.price | money }}

Keep in mind that this is just one example of how you might approach this task, and the exact code will depend on the specifics of your store and theme. If you are not comfortable editing the code of your theme, you may want to consider hiring a developer to help you make these changes.

Let me know if requires further assistance !