Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How to remove Express Checkout buttons on Debut theme?

How to remove Express Checkout buttons on Debut theme?

OurOrbital
Tourist
12 0 3

Hi all,

 

I was wondering how I'd be able to remove the "Express Checkout"/Paypal buttons on both the cart and checkout page. I tried following tutorials on the matter but they don't seem to work as the Debut theme does not have a cart-template.liquid, cart.liquid, or theme.scss.liquid file. I would really appreciate any help. Thank you so much for your time and help, I hope you have a great day 🙂 

Replies 9 (9)

Zworthkey
Shopify Partner
5581 642 1583

@OurOrbital 
Welcome to the Shopify community!
Thanks for your good question.


Please share your store URL.
So that I will check and let you know the exact solution here.

Zworthkey
Shopify Partner
5581 642 1583

@OurOrbital 
Check out this link:
https://community.shopify.com/c/blog/remove-the-express-checkout-buttons-from-first-checkout-page/ba...

it will works, let me know if you need any more help,
Thank you.

OurOrbital
Tourist
12 0 3

Hi @Zworthkey ,

Thanks for the reply. My store URL is https://ourorbital.com

 

I saw that post before but I wasn't sure where to put the code.

For step one, debut does not have "cart-template.liquid" or "cart.liquid" 

For step two, I don't have "theme.scss.liquid" 

 

Do I follow the same steps but just put them in another file? If so, where would I put the code? Thank you so much for the help!

Zworthkey
Shopify Partner
5581 642 1583

@OurOrbital 
or for that hire someone to remove it,

Let me know if you need any other help from us.

OurOrbital
Tourist
12 0 3

@Zworthkey 

Okay, by any chance do you know where I'd insert the step 1 and step 2 code? 

Zworthkey
Shopify Partner
5581 642 1583

@OurOrbital 
Without Knowing your theme file structure, I don't guess or can't provide you the exact solution.

OurOrbital
Tourist
12 0 3

It's the Debut theme but do you know where I would be able to hire someone?

MNDFLMTLS
Visitor
2 0 2

I am also trying to hide the express checkout from the cart and checkout pages but the link you have provided in this comment does not lead to any tutorial. Could you please share a link to the step by step guide?

KH-seoul
New Member
11 0 0

You can remove express payment methods from the first step of the checkout using the PayRules: Hide Payment Methods app in your Debut theme. Here's how you can do it:

 

  1. Open the PayRules app.
  2. Navigate to the "PayPal Express Checkout" section.
  3. Enable the toggle to hide the PayPal express payment method.

express.png

 

To remove from the cart or product page, you can add the below code to your theme.liquid file.

 

<style>
.additional-checkout-buttons, shopify-payment-button, .dynamic-cart-btns {
display: none !important;
}
</style>

 

This will remove the express checkout options from the cart and the first step of the checkout process.