I am using php to implement a PayPal Express Checkout as a payment method.
All I want for my users is their first option to be...
Pay with my credit or debit card
(Optional) Sign up for PayPal for faster future checkout
their second option should be...
Pay with my PayPal account
Log in to your PayPal account to complete the purchase
This is my form...
<form id="paypal_form" class="paypal" action="payments.php" method="post">
<input name="cmd" type="hidden" value="_xclick" />
<input name="no_note" type="hidden" value="1" />
<input name="lc" type="hidden" value="GR" />
<input name="currency_code" type="hidden" value="EUR" />
<input name="bn" type="hidden" value="PP-BuyNowBF:btn_buynow_LG.gif:NonHostedGuest" />
<input name="item_number" type="hidden" value="1" />
<input type="submit" value="Submit Payment with PayPal" />
</form>
I have already setup in my sandbox account
TYPE: BUSINESS
PayPal account's Profile -> More Options -> My Selling Tools -> Website Preferences -> PayPal Account Optional: ON
The result is that I get the screen...
Create a PayPal account
And pay with your debit or credit card
Any suggestions !?!?