Can anyone please help me to remove the amazon buy buttons from my product pages?

Here is an example of a product page with the amazon buy button which I would like to remove:

https://leavesoftrees.com/products/lavender-tangerine-deodorant?variant=337308326

I tried going into product liquid to try to fix it myself, but I can’t even find it there.

I can only see it in icon-amazon_payments.liquid and I see amazon-badge.png (which is the button graphic).

I appreciate any advice.

icon-amazon_payments.liquid

Hi @RQureshi

You can 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:
ul.product-select-external-elements {
    display: none;
}

Thanks for your advice. I tried it but it didn’t work. Part of the problem may be the the file is theme.scss so I will try to convert to theme.css

Is there a tool that you prefer to use to convert .scss to .css?