How can I edit the buy button text in the Motion theme?

I need help on editing the text in the buy button area. I can’t see it in the code nor in the theme, am I missing something? I just want to remove the Free Shipping there.

1 Like

Hmmm, this one would be tough since “speed theme” isn’t showing any results and I am unable to find theme documentation. Without seeing the Buy Buttons liquid I am unsure how to help. Do you possibly have a link to where I can find the theme?

Hi @jgelicame

Its look like an app button, would you mind to share youre store URL? I just like to check if we can remove that one. Thanks!

https://metalgardenscreen.co.uk/products/tradition
Here it is. It is a Motion Theme but can’t see it

1 Like

Sorry. It is a Motion Theme

Thanks for the info, try this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

div.product-block > div > div > div.msg__container > p:nth-child(1) {
    display: none !important;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you!!

I would avoid using css selectors that do not specifically target the content in question. If anything changes that section of code, this solution will no longer work. Your best bet without seeing the main-product.liquid is to reach out directly to https://archetypethemes.formcrafts.com/contact and they can tell you the proper way to have this removed. I’m going to go out on a limb here and say they have a setting for this in their theme settings, if not they should be able to tell the exact theme file to permanently remove this.