Discussions

paypal shipping issue

Hi,
I have a huge issue with paypal.
i am using paypal express on my site and a client purchased today with it but i dont see that he was charged shipping charges, as he didnt go through the checkout process, is there a way to fix this or a way to remove that checkout with paypal button in the cart and instead only show the paypal payment method in the payment page during checkout?

Posted: Mar 18, 2013

Comments

crns13@gmail.com caco on October 14, 2014

I had the same issue. In Commerce PayPal Express Checkout module there is no setting item to only display PayPal logo after evaluates shipping costs first. In my case, if I click in Checkout with paypal button before shipping costs, the page is redirected to PayPal site and after customer paying process with paypal, paypal redirects back to my site, and the shipping costs are calculated, with the costs charged in paypal but transparently. This is explained in https://www.drupal.org/node/1901466.

As my client didn't want to display the Checkout with paypal button before the shipping costs, I simply doesn't display the button editing /www/acervoeditorial/sites/all/modules/commerce_paypal/modules/ec/theme/commerce_paypal_ec.theme.css and added the line "display: none;"

in that file. See:

#edit-paypal-ec,
#edit-paypal-bml {
background: none;
border: none;
margin: 0 .5em 0 0;
padding: 0;
display: none;
}

and now the Checout with paypal button has gone.