1.

How we can add a custom payment method only enable for admin section in Magento?

Answer»

We can enable the custom PAYMENT METHOD only for ADMIN by to set $_canUseInternal to true and $_canUseCheckout to false.

Example

PLEASE UPDATE these given setting in your model.


protected $_canUseInternal = true;
protected $_canUseCheckout = false;



Discussion

No Comment Found