Accepting credit cards, warehouses, and shipping and fulfilling orders
Hi,
I am looking to remove Express Checkout payment buttons from the address input page after checking out from the online store. These buttons have caused several of my customers to skip the shipping selection page and it has wasted a lot of time in order processing.
I have looked back on all solutions to removing such buttons but none have worked. Theme developers apparently are not able to assist on such removal as the buttons are part of Shopify. Custom CSS codes do not work either.
Is there a more recent solution for the removal of Express Checkout or is there no solution at all?
Thank you.
Hello @Ruinberg ,
You can try to follow these steps:
Go to your admin panel -> settings -> Checkout
Go to Additional scripts -> Manage scripts -> Create a new script -> Payment gateway
add the following code:
$(document).ready(function(){
$('input[name="checkout[shipping_rate][id]"]').on('change', function(){
setTimeout(function(){
if($('input[value="paypal_express"]').length > 0){
$('input[value="paypal_express"]').parents('div[class*="field--payment"]').hide();
}
if($('input[value="amazon_payments"]').length > 0){
$('input[value="amazon_payments"]').parents('div[class*="field--payment"]').hide();
}
if($('input[value="shopify_payments_express"]').length > 0){
$('input[value="shopify_payments_express"]').parents('div[class*="field--payment"]').hide();
}
}, 1000);
});
});
Save and test
Hope this can help you out.
Jen from TrueProfit.
Same issue here.
The Shopify templates are severely flawed - invoking an express checkout option before total cost is calculated.
Useless.
Yes, you can remove the Express Checkout payment buttons from the address input page using the PayRules: Hide Payment Methods app. Here's how you can do it:
By following these steps, the Express Checkout payment buttons will be removed from the address input page, ensuring your customers proceed through the shipping selection page without skipping it.
Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024The Hydrogen Visual Editor is now available to merchants in Shopify Editions | Summer '...
By JasonH Sep 2, 2024Note: Customizing your CSS requires some familiarity with CSS and HTML. Before you cust...
By JasonH Aug 12, 2024