Remove Paypal Credit from Magento checkout - paypal

Have express checkout on magento 1.9.4.3, the checkout comes with various options for paypal, 1 being paypal credit.
There is no option in settings to disable this, and also it appears twice.
How do I delete the code to get rid of any paypal credit mentions.
Thanks

Related

paypal payment not going through with any of the options

Using ASP Classic
Paypal LIVE Express checkout
It shows the Payment Amount at the checkout, but the payment doesn't go through. The payment doesn't even leave customer's account. I have tried using my wife's paypal account to complete the checkout.
I am only using paypal checkout system and have added all the API information in expresscheckout.asp and paypalfunctions.asp
I have also tried adding these API options too, but still wouldnt work
L_PAYMENTREQUEST_n_NAMEm
L_PAYMENTREQUEST_n_NUMBERm
L_PAYMENTREQUEST_n_AMTm
L_PAYMENTREQUEST_n_QTYm
Any help would be great.... tks

Express Checkout with Paypal Payflow Pro - hosted pages

According to this https://developer.paypal.com/docs/classic/payflow/integration-guide/#configuring-hosted-pages-using-paypal-manager i should be able to enable express checkout payment option on my paypal manager account(test mode) but I can't see any PayPal Express Checkout section on the Hosted Pages setup page. During the transaction i can see only credit card payment method on the hosted page. How to enable express checkout payment method?
Thanks in advance,
Daniel
Which layout did you choose? I'm pretty sure you have to use Layout C in order to get the Express Checkout option built in, and you need to make sure it's activated in your PayPal Manager.

PayPal hosted checkout page not showing paypal option

I am trying to create PayPal hosted pages (with PayPal Advanced). When I go to PayPal Manager -> Hosted Checkout Pages -> Customize, in the 'Preview', I am seeing only the 'Pay with Credit or Debit Card' option. I am not seeing the 'Pay with PayPal' option. Can someone please help me with this?
Thank you.
Here are some changes that you need to make to your PayPal Manager Hosted Checkout Pages.
In Hosted Checkout Pages Go to Setup
Scroll down to the Section Entitled PayPal Express Checkout
Next to Enable PayPal Express Checkout: choose Yes from the drop down
You can enable Bill Me Later as well by choosing Yes from the drop down
Scroll down to the bottom and click save changes
This will take effect immediately.
Below is the link to PayPal's official Developer Site with additional information on integrating PayPal Payments Advanced.
PayPal Payments Advanced Integration Guide
Though it's months ago, for anyone who'll might encounter this problem, It's because you have not set a PayPal Express checkout account when you created your PayFlow account. You have to set it so you can see "Enable PayPal Express Checkout" on your PayPal Manager Setup tab, or else, you will only see 'Pay with Credit or Debit Card' option in checkout process..

Basic PayPal express checkout

I have a store running opencart which already has a fully functional shopping cart running, it is just requesting an API and authentication details.
So, how can I simply setup a API and be done with it, do i need to setup a sandbox account etc.
I just want a very simple setup for accepting payments via paypal and credit cards in NZ
Ive checked all the online guides and they are all for older layouts/designs of paypal.
Any help much appreciated!
Thanks
The only thing You need to is to install and enable (both if not yet done) the PayPal standard (or Paypal Express checkout) payment options in OpenCart administration - as far as I understand Your problem clearly.
Go to administration Extensions -> Payments and here scroll to find the PayPal payment options (should be three by default: PayPal Standard, PayPal Website Payment Pro and PayPal Website Payment Pro UK) - PayPal Standard should be Your bet. If Install action is available on the right, click on it and afterwards click on Edit action. Insert Your account information, select Enabled status and Your are done.
Now users should be able to select this payment option and after confirming the order they should be redirected to PayPal to pay for their orders.

PayPal payments: Default to 'Pay with Credit Card' instead of loggin in with a PayPal Account

I have seen this done before so I know it's possible - when you redirect to a PayPal checkout from your site, paypal presents you with 2 options to make a payment. One is "Login with PayPal Account" and the other one is something like "Don't have a PayPal account? Pay with Credit/Debit Card". By default the second option is collapsed, but I've seen sites where it's uncollapsed by default. How can I achieve this effect?
NB - previous posts suggested that it's done by cookies, and if PayPal detects that you have a PayPal account it will display the first option (login with PayPal). However I've seen other sites that display the 'Credit/Debit' card option uncollapsed even if you've got a paypal account. Do they clear the cookies somehow before redirecting you to PayPal?
Thanks
just add :)
<input type="hidden" name="landing_page" value="billing">
You are redirected to billing page...
You can not set the credit card option to show by default if you are using Website Payments Standard. This is set by cookies. However, if you are using Express Checkout you can set the credit card section to show by default. This is most likely what you have seen on other sites. If you are using Express Checkout, and want to set this all you need to do is passing over the following 2 variables and values in your SetExpressCheckout API call.
SOLUTIONTYPE=Sole
LANDINGPAGE=Billing
You also need to make sure you have PayPal account optional turned on in your PayPal account. This is section is found in your profile.
A little bit late with this one but i recently had the same issue using Express Checkout JS
Managed to resolve this by adding the following to the js object
experience: {
flow_config: {
landing_page_type: "billing",
}
}
I came across from various sites regarding the same ask while I have workaround to achieve this for the time being. :) But your finding resolved my issue, that's cookies cause after I have my workaround applied.
The workaround to default the Paypal payment to Credit/Debit card option is to add the variables on your button such as country=COUNTRY_VALUE or any other variables you would think customer is fine to have it defaulted. Variables page https://developer.paypal.com/webapps/developer/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/#id08A6HI0J0VU
Hope it helps you. :)