skip to Main Content

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


  1. 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.

    Login or Signup to reply.
  2. You can approach this as

    1. Create an attribute for the product as multi-select which have the all available payment methods as option OR you can create Yes/No attribute and put Yes by default , assign No for the products which paypal is not allowed.

    2. Now use this attribute values at checkout to hide the paypal method , you can get an idea for hiding the payment from HERE

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search