Amazon Pay on shopping cart page

Hello everyone!

On my shopping cart page, users can see the different payment options (see pic below)

However I would like to hide all the payment options and just have the one button saying “check out” on this page.

Which code do I have to add where to hide all the other buttons?

Shop URL: https://mylongevitylife.com/

Thank you very much in advance!

Have a great day!

Hi @Lara14

You should try following the instructions below

Step 1: Go to Admin → Online store → Theme > Edit code

Step 2: Search for the file main.css and add this code snippet to the end of the file

.shopify-cleanslate {
    display: none !important;
}

Result

If it’s helpful, please like and mark it as a solution, thank you

Have a nice day

1 Like

Hi @Lara14

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css or theme.css

Step 3: Add code

.shopify-cleanslate {
    display: none !important;
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

1 Like

Thank you Amelia,

it worked!