Note: You can only remove these payment icons from the Cart page. You cannot remove these from the Checkout page unless you are a Shopify Plus customer.
If you want to remove the PayPal and/or Amazon payment icon from your Cart page, you will need to head into the liquid template files and remove some code. Please note, this involves editing the theme's template files.
Parallax, Retina, Responsive
- From your Shopify Admin, click Online Store > Themes > Actions > Edit Code.
- Open the Sections file called cart-template.liquid.
- Near the bottom of the file, but before the {% schema %} tag, delete this line of code:
{{ content_for_additional_checkout_buttons | google_button_options: 'transparent' }}
Turbo theme
- From your Shopify Admin, click Online Store > Themes > Actions > Edit Code.
- Open the Sections file called cart-template.liquid
- Near the bottom of the file, but before the {% schema %} tag, delete this line of code:
{% if content_for_additional_checkout_buttons and settings.cart_action != 'ajax' %}
<div class="additional-checkout-buttons">
{{ content_for_additional_checkout_buttons }}
</div>
{% endif %}
Flex theme
- From your Shopify Admin, click Online Store > Themes > Actions > Edit Code.
- Open the Sections file called cart__main.liquid
- Locate this code and delete it:
{ {% if content_for_additional_checkout_buttons %}
<div class="additional-checkout-buttons">
{{ content_for_additional_checkout_buttons }}
</div>
{% endif %}