-
AuthorPosts
-
July 16, 2015 at 11:33 am #332231
Hello!
I have an ecommerce site that only offers PayPal Express method of payment and checkout. From what I understand, if this is the only Payment/Checkout method, the theme should do either one of 3 things:
1. Remove the “Proceed to Checkout” button in the Cart (only have the PayPal Express button displaying)
or
2. When “Proceed to Checkout” is clicked, the customer should go directly to PayPal, as if PayPal Express Checkout was selected.
or
3. When “Proceed to Checkout” is clicked and the customer is sent to the Woocommerce Checkout page, there should be no Billing and Shipping Address forms, since this information will be entered on the PayPal site if necessary. The Checkout page should only contain the order summary. Currently, not only are these forms displayed, the Billing address is required!
Please advise on how to fix this issue. I’d prefer option 1 if possible, but any of the 3 would do.
Thanks!
July 16, 2015 at 1:43 pm #332353Hi There,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
July 17, 2015 at 8:06 am #333116This reply has been marked as private.July 17, 2015 at 10:05 am #333183Hi there,
Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Then try adding the following code into your Child Theme’s functions.php file.
remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 10);
Hope that helps.
July 17, 2015 at 12:57 pm #333265Hello,
Unfortunately that didn’t do anything… Any other suggestions?
Thanks
July 17, 2015 at 8:47 pm #333478Hello There,
Sorry if it didn’t work out for you. Though X theme supports Woocommerce, it is best that you consult WooTeam for the exact implementation of the Paypal Express checkout.
For more details about this WooCommerce feature, please check it out here: http://docs.woothemes.com/document/paypal-express-checkout/
Hope this helps. Kindly let us know.
-
AuthorPosts