Magento 2: Get Payment Methods (All/Active/Used)

This article shows how to get payment methods in Magento 2. We will be fetching 3 types of payment methods. They are: 1) All Payment Methods 2) Active/Enabled Payment Methods 3) Payment Methods that have been used while placing orders I will be showing both ways (Dependency Injection & Object Manager way) to get payment … Read more

Magento: PayPal Standard Payment form replaced by PayPal Express Checkout form in Admin Payment Settings

Problem: The PayPal Payments Standard form is missing from Payment Settings in Magento admin. System -> Configuration -> SALES -> Payment Methods -> PayPal All-in-One Payment Solutions PayPal Payments Standard is displayed as Payments Standard (Includes Express Checkout) and it is showing the form contents of PayPal Express Checkout. The original form of PayPal Payments … Read more

Magento: Paypal Express Checkout Showing Empty Order Data [FIXED]

I am using Magento verion 1.4.0.1 and I had this issue. I had enabled Paypal Express Checkout payment method. When I choose this method on checkout, I was redirected to Paypal website but order data was not displayed there. The main reason in my case was due to applied discount to the cart. I had … Read more

Magento: Step-by-Step Moneybookers Payment Method Setup

This article shows step-by-step guide to setup Moneybookers (Skrill) Payment Method on Magento. I will be dealing with the developer perspective (creating and testing with a Test account). 1. Create Test Accounts You have to create two test account. One is Merchant/Business Account and the other is Personal Account. Use two different email address for … Read more

Magento Paypal: Email, Shipping Cost & Order Status issue in version 1.4.0.1

Magento version 1.4.0.1 has some issues with Paypal email, shipping cost and order status. Note: All these issues occur when payment is done through Paypal 1. Order confirmation email is not sent Fix: – Open app/code/core/Mage/Checkout/Model/Type/Onepage.php – Go to line 626 – Comment out the IF condition as below: /** * we only want to … Read more

Magento: How to setup Ogone Payment Method? [IMAGES]

Ogone is one of the leading European Payment Service Providers with more than 28.000 clients across 40 countries. Ogone is connected through certified links to more than 200 European banks/acquirers that enable handling of international payment methods like Visa, MasterCard, American Express, Diners Club and JCB as well as local ones like iDEAL and Machtigingen … Read more

Magento: PayPal Website Payments Standard not displayed

Problem: PayPal payment method is not displayed in payment method section of onepage checkout in Magento. I am using “PayPal Website Payments Standard“. I have enabled this module from backend. System -> Configuration -> SALES -> Payment Methods -> PayPal Website Payments Standard. Cause: The possible cause is because base currency of your shop is … Read more

Magento: Authorize.net not displayed in Payment Information section while Checkout

Scenario: I have enabled Authorize.net payment method but it is not displayed in Payment Information section while Checkout. Problem: In the class Mage_Paygate_Model_Authorizenet, you will find the following variable:- protected $_allowCurrencyCode = array('USD'); It means, the allowed currency for Authorize.net is only US Dollar (USD). You have to add the currency code to the above … Read more