Jump to content

Express Checkout button not showing on mobile


nutxlago

Recommended Posts

Hi, I am having a problem with Checkout Express Button on mobile devices (Android4.3): it is nowhere to be seen. 

On the other hand, I am having problems too with "Add to cart" button on Android (4.3 checked): not responding on product page, but perfect performance on home page or product lists.

 

Feel free to visit my site with an Android's (or others) mobile device to check if you are having the same problem. (http://www.analago.com) And be patient, I am working to speed up the page...

 

Anyone can help me with this issue? I have looked arround on the forum but nothing found.

 

Thanks!

Link to comment
Share on other sites

  • 10 months later...

it has to do with paypal.php hook method i think. in for example hookProductFooter() you have 
 

$content = (!$this->useMobile()) ? $this->renderExpressCheckoutButton('product') : null;
retu;rn $content.$this->renderExpressCheckoutForm('product');

 

i think this means that if not mobile then null so no check out button, i will test later but maybe change in modules/paypal.php , hookProductFooter()

 

$content = (!$this->useMobile()) ? $this->renderExpressCheckoutButton('product') : null;

to

$content = $this->renderExpressCheckoutButton('product') ;

 

 

that might work :)

 

trev

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...