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 > ... > 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' }} Vino
- From your Shopify Admin, click Online Store > Themes > ... > Customize.
- Open the theme customizer and click on the gear icon on the left side to open Theme settings.
- In the Theme settings, scroll down to the Cart tab.
- Click the on/off toggle for Enable additional checkout buttons.
Turbo theme
- From your Shopify Admin, click Online Store > Themes > ... > 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 > ... > 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 %}