Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › Paypal checkout without loging into paypal (guest checkout)
- This topic has 3 replies, 3 voices, and was last updated 10 years, 2 months ago by admin.
-
AuthorPosts
-
September 15, 2014 at 12:47 pm #11468bilginyazarMember
I designed a store with estore plugin and i have only 3 product. when someone wants to buy these products it directs them to paypal.com but they need to login with paypal account, i dont want to use paypal login feature. how can i do that?
September 15, 2014 at 10:27 pm #65504wzpModeratorA PayPal business or premier account is needed to offer credit card checkout to your customers.
Upgrade to a PayPal Business account. It’s free*. You’ll then be able to accept credit card payments without requiring people to log into PayPal.
*Free is a subjective word. They do require you to provide a ton of personally identifiable information on who you really are.
September 16, 2014 at 4:21 pm #65505bilginyazarMemberPAYPAL official office:
Thank you for contacting Merchant Technical Support.
I checked your PayPal setting and found that you have not enabled the guest checkout option.
Please do the following.
My Account -> Profile -> My selling tools -> Website preferences -> Update -> PayPal Account Optional -> On
And please refer the below description.
It’s important to remember that guest checkout is not guaranteed for every transaction. Low percentage of your customer will be able to enjoy this feature and it also depending a lot on several criterion’s, such as the location of the seller and the buyer and other points that the system use to identify if the buyer should be able to get the feature.Means our system has decided to disable the guest checkout option for risk reasons.
Here are a few things to make sure guest checkout is offered as often as possible.
-Verified PayPal account
-Confirmed email address
-Guest Checkout enabled
-With Express Checkout their cart must pass “SOLUTIONTYPE=Sole” and “LANDINGPAGE = Billing” (ExpressCheckout Case)
-add the HTML code <input type=”hidden” name=”landing_page” value=”billing”> (Web Payment Standard Case)
If all of these are met and it’s not available then our system has decided to disable the guest checkout option for risk reasons. This is not a permanent decision and it will be available in the future.
For example, a buyer in the US try to buy from a seller from US. They will have a high percentage to get to use the guest checkout feature to compare to buyer from Romania trying to buy from US seller.
The only way to guarantee the credit card option is to use PayPal Advanced or PayPal Payments Pro. Otherwise they rely on our risk filters to determine eligibility.
I’m sorry for the inconvenience, I hope that the explanation above was clear to you.
Have a good day, thank you.
SO SO SO
Although, we made “PayPal Account Optional -> On”, if a customer buy via credit card at first, following payments needs paypal login or paypal account to create.
Therefore we need to -add the HTML code <input type=”hidden” name=”landing_page” value=”billing”>
where to add?
September 17, 2014 at 7:09 am #65506adminKeymasterAdd the following block of code to your functions.php file to add that HTML code to the PayPal submission.
add_action('eStore_before_submitting_cart_to_paypal','my_additional_paypal_fields');
function my_additional_paypal_fields($paypal_data)
{
$paypal_data->addField('landing_page', 'billing');
} -
AuthorPosts
- You must be logged in to reply to this topic.