Jump to content

paypal checkout in prestashop mobile version 1.5.2


Recommended Posts

  • 3 months later...
  • 3 weeks later...

Looking for the solution as well, as the express checkout isn't working as it should I am trying to turn it off completly.

I turned off 3-click/express checkout in the PP module but the button is still visible on the mobile site (product page + cart summary).

Link to comment
Share on other sites

  • 8 months later...

Bumping this thread as this is still a problem. I am using Mobile Template v0.5.3.

 

As vinatec states, the Express Checkout button appears on both the Product page and the Cart summary page. There is not an easy (proper) way to disable it, and I have noticed an additional problem:

 

1. user clicks PayPal Express Checkout button (Product page or Cart summary page) on a $1 product with $4 shipping and $.06 tax

2. user transfers to PayPal and either logs in or enters credit card details

3. user transfers back to shop Cart Summary page (Express button is visible, and would cause a loop between PayPal and shop if user continues to click on it), and uses traditional checkout flow to choose address, shipping and reach final cart page of store.

4. Final cart page (in store): "You have chosen to pay with PayPal. The total amount of your order is $0.00 .

5. User click "I confirm my order"

6. Order processes correctly and user is correctly charged $5.06.

 

So, the following things are fouled up with this PayPal integration with the mobile theme:

  • Buttons are not easily disabled
  • Loop will occur between PayPal and the store, if user clicks Express Checkout button after returning to store from initial round-trip to PayPal.
  • The wrong amount (0.00) is displayed on final confirmation page (when the purchase is made), even though the order processes correctly.
Edited by hermit75 (see edit history)
Link to comment
Share on other sites

  • 3 months later...
  • 1 month later...

FOR PS 1.6 

 

Have you tried to hide the Checkout Express button on mobile theme editing the paypal.css?in yourshop/public_html/modules/paypal/css/paypal.css

 

Look for:

 

#container_express_checkout{
margin:auto;
text-align:left;
position: absolute;top: 420px;right: 360px;
} // this is my position, not the default one!!
 
 
You can add immediately after (to keep things in order)
 
 @media (min-width: 768px) {
#container_express_checkout{
display:none;
}
}
 
I am only guessing it works. My server is soooooooooo slow that it takes me ages to check changes on mobile. Give me feedback if you try, please
Edited by nutxlago (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...