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
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:
base.css file.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.
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