Can I specify payment method according to product.
I have 2 to 3 products which paypal doesn’t allow to sell so I want when buyer go to that product they can only buy through card.
Can I specify payment method according to product.
I have 2 to 3 products which paypal doesn’t allow to sell so I want when buyer go to that product they can only buy through card.
2
Answers
Hey I’ll assume its Magento 2.
You could use a plugin like: Meetanshi Payment Restrictions
This will allow you to add a custom product attribute like ‘no_paypal’
And restrict payment methods based on whether this attribute is TRUE or FALSE.
You can approach this as
Create an attribute for the product as
multi-select
which have the all available payment methods as option OR you can createYes/No
attribute and putYes
by default , assignNo
for the products which paypal is not allowed.Now use this attribute values at checkout to hide the paypal method , you can get an idea for hiding the payment from HERE