Zen Cart Logo
Forums / PayPal Express Checkout support / PayPal Express Checkout Button not showing

PayPal Express Checkout Button not showing

Views: 2,745

Results 1 to 3 of 3
12 Oct 2022, 8:00 PM
#1
haychatter avatar

haychatter

New Zenner

Join Date:
Mar 2022
Location:
UK
Posts:
22
Plugin Contributions:
0

PayPal Express Checkout Button not showing

Hi all,

I am currently building a second site (haychatter.co.uk) duplicated from my first site (karenharbour.co.uk).

Both sites are hosted on the same server using the same template (Tableau 2) customizing the css to make them different.

The first site works fine, but no matter what I have read and tried I can't get the paypal button to show in the shopping cart on the second site.

I have double checked all the settings on both admin sites and everything matches, all the files are duplicated with slight changes to the styles.

I don't know what else I can try...

Any help would be very much appreciated.

Thanks

13 Oct 2022, 6:03 AM
#2
simon1066 avatar

simon1066

Totally Zenned

Join Date:
Feb 2009
Location:
UK
Posts:
1,326
Plugin Contributions:
0

Re: PayPal Express Checkout Button not showing

Just a quick look but the PayPal EC button is being hidden by this CSS rule in your stylesheet.css, line #215

.buttonRow {
  display: none;
}

You should perhaps investigate why that rule is there and whether or not it is needed. If you need to leave it in then you could add this to your stylesheet.css

#PPECbutton.buttonRow {
  display: block;
}
13 Oct 2022, 10:14 AM
#3
haychatter avatar

haychatter

New Zenner

Join Date:
Mar 2022
Location:
UK
Posts:
22
Plugin Contributions:
0

Re: PayPal Express Checkout Button not showing

Thanks Simon, that worked a treat.

So simple but something I would never had thought of :blush:.

Not sure why original css rule is there so will take a proper look later.

Thanks again :smile: