Apple Pay & Google pay button entfernen

Topic summary

Problem: A user wants to remove Apple Pay and Google Pay buttons from their cart page in the Dawn theme. While these payment options are acceptable at checkout, they want to hide them specifically from the shopping cart view.

Solution provided: Add custom CSS code to hide the dynamic checkout buttons:

  • Navigate to Online Store > Themes > Edit Code
  • Open the base.css file
  • Add the following CSS at the end:
.additional-checkout-buttons .cart__dynamic-checkout-buttons {
  display: none !important;
}

This CSS targets and hides the express checkout buttons (Apple Pay, Google Pay) from displaying in the cart while keeping them available during the actual checkout process.

Summarized with AI on November 7. AI used: claude-sonnet-4-5-20250929.

Hello together,

I would like to delete the Apple Pay & Google pay button in the cart. In the checkout it’s totally fine that it is there. I have the dawn theme

I can’t find any setting where I can delete the buttons there.

Best,

Luca

Hallo @Luca31 ,
versuche mal folgenden Code zum Schluss deiner Base.css Datei hinzuzufügen:

.cart__dynamic-checkout-buttons.additional-checkout-buttons {
    display: none !important;
}

Gehe dafür unter Onlineshop>Theme>Code bearbeiten

1 Like