I'm using PayPal Website Payments Standard. Whenever the user lands on PayPal with the variables I sent, it shows a PayPal Login form and at the bottom it shows "Don't have a PayPal account? Use your credit card or bank account (where available)."

I want it to default to always ask for credit card and maybe say "Have PayPal? Use that!". Any ideas?

link|improve this question
Why would you want to force people to use credit cards? – Will Nov 21 '08 at 16:51
Its a business requirement. – Jonathan Nov 21 '08 at 16:54
2  
I'm going to go out on a limb and say if you have to have them use credit cards, you may be better-off with a "real" CC processor. It's in PayPal's best interest for people to use their system, and no the credit cards :) – warren Nov 21 '08 at 16:55
I see they also have a Pro offering that I am looking into. It just seemed this would be the simplest / cheapest way to integrate payments on the site. – Jonathan Nov 21 '08 at 16:59
By the way - do the comments imply that the answer to this question is "NO"...? Thats all I was looking for really. – Jonathan Nov 21 '08 at 17:00
show 2 more comments
feedback

4 Answers

On a thread in the PayPal Developer Community they explain it with cookies based visits to the checkout page.

Basically if PayPal detects you being a user and spots their cookie, they will show the login form by default.

If they can't see that cookie, then they will show the credit card option first with a note that if you already have a PayPal account, to log in.

So the answer is no.

link|improve this answer
And to add to that: if you use Express Checkout, you can set LANDINGPAGE=Billing in the SetExpressCheckout API call. Additionally, Express Checkout is free and available pretty much globally, so there's no reason not to use Website Payments Standard (the HTML based variant, which does not offer this feature). – Robert Jul 4 '11 at 21:39
feedback

I've struggled with this question and found the answer following Roberts comment about using LANDINGPAGE=Billing in the ExpressCheckout API.


From the page:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_SetExpressCheckout

LANDINGPAGE:Type of PayPal page to display.

It is one of the following values:

  • Billing – Non-PayPal account
  • Login – PayPal account login

Additionally see:

SOLUTIONTYPE: Type of checkout flow. It is one of the following values:

  • Sole – Buyer does not need to create a PayPal account to check out. This is referred to as PayPal Account Optional.
  • Mark – Buyer must have a PayPal account to check out.

NOTE:You can pass Mark to selectively override the PayPal Account Optional setting if PayPal Account Optional is turned on in your merchant account. Passing Sole has no effect if PayPal Account Optional is turned off in your account


Hope this helps.

link|improve this answer
feedback

It looks like things have changed since this was initially answered.

From my tests, it relies on the email variable prepopulation variable. When it's present, the credit card form will be hidden one click away, and the paypal login form will be filled out with that email.

I'm still looking for a way to pass the email while still showing the credit card form.

link|improve this answer
feedback

Random Echo is correct, paypal shows what it wants, don't think you can change it.

Sounds like if they can't use paypal it self you shouldn't be using them for CC processing.

Have you had a shop around at other places? DPS is pretty good, integrating with them as we speak.

link|improve this answer
Why post an answer if you don't know? – Serj Sagan Apr 16 at 23:04
Because I was offering an alternate solution to the problem proper. Maybe you should read the full discussion below the question that explains the real problem before you go off half cocked bitching about validity of answers. Disclaimer: I don't work for DPS, just used them, they are good, and anything beats dealing with the scum behind paypal. – Louis Apr 17 at 0:47
feedback

Your Answer

 
or
required, but never shown