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: Get Payment Methods (All/Active/Used)

This article shows how to get payment methods in Magento 1. 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 To get all payment methods, we can either use Mage_Payment_Helper_Data or Mage_Payment_Model_Config class. To get … 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: Payment method not displayed in Multiple Shipping Adresses Checkout

Problem: I have a payment method which is displayed well in general Magento checkout. But it is not displayed in Multiple Addresses Checkout. Solution: Please see the Model class of your payment module. The following variable should be set as true. /** * available for multi shipping checkouts */ protected $_canUseForMultishipping = true; Write the … Read more