Page 1 of 1

Disable Paypal EXPRESS only? (and keep Paypal Standard)

Posted: Tue May 19, 2020 8:32 am
by bugman
Paypal Express Checkout (yellow Paypal button in the mini-cart) is causing some problems, I would like to disable it completely, but I definitely need to keep Paypal STANDARD as an option on final checkout page.

I have tried manipulating the payment gateways & methods, but cannot seem to find a way to remove Paypal Express that doesn't also completely remove Paypal Standard.

How can I remove Paypal Express ONLY?

Re: Disable Paypal EXPRESS only? (and keep Paypal Standard)

Posted: Mon Jun 01, 2020 12:58 pm
by bugman
Anybody?... :roll:

I see this post has had 31 views, so I don't think I am the ONLY person interested in this... does anyone have any thoughts???

Re: Disable Paypal EXPRESS only? (and keep Paypal Standard)

Posted: Wed Jun 03, 2020 7:17 am
by Naveed
Hi,

You can remove/disable the PayPal express checkout button from Basket page by following these steps:

1. Open ~/Basket.aspx page in some text or code editor and locate the following code near the end of the page code and comment it out:

<uc1:PayPalExpressCheckoutButton ID="PayPalExpressCheckoutButton1" runat="server" />

2. Save changes and reload web page to confirm the changes.


To remove it from the mini basket:

1. Open the ~/ConLib/MiniBasket.ascx file some text or code editor, and locate the following line of code near the end of the file:

<uc1:PayPalExpressCheckoutButton ID="PayPalExpressCheckoutButton" runat="server" ShowHeader="false" ShowDescription="false" PanelCSSClass="" />

2. Comment this out and save changes.

Re: Disable Paypal EXPRESS only? (and keep Paypal Standard)

Posted: Wed Jun 03, 2020 12:02 pm
by bugman
I will give this a shot - thank you!!!