3

I want to remove the express checkout option from my checkout page on Shopify basic plan.

Thomas Beaudouin
  • 3,257
  • 2
  • 8
  • 5

1 Answers1

7
  1. In your admin, go to online store > themes
  2. Then Action > Edit code
  3. Inside cart.liquid file, paste this at the top:
    <style>
    .additional-checkout-buttons {
      display: none;
    }
    </style> 
    
  4. Inside cart.liquid file, paste this anywhere:
    {% if additional_checkout_buttons %}
        <div class="additional-checkout-buttons">
          {{ content_for_additional_checkout_buttons }}
        </div>
    {% endif %}
    
  5. Save

Done! Why? Because Shopify is designed to show the express checkout whether on cart page OR checkout page NOT both. So if you add it to cart page (and hide it with CSS) then it will not appear on checkout page! :)

Please see the image of what I have on my siteremove shopify express checkout from checkout page

Subhrajyoti Das
  • 2,685
  • 3
  • 21
  • 36
Thomas Beaudouin
  • 3,257
  • 2
  • 8
  • 5