Reputation: 1889
After searching on Google for quite a while I am going crazy. My question: Can you configure Magento to require a coupon code to buy specific product?
This is for a promotion my employer is running, basically we want to allow specific customers to buy specific product in our Magento store before any of our other customers. Thank you for your suggestions.
Upvotes: 0
Views: 211
Reputation: 1514
A brief idea I can give here.
isDisabled
method of Mage_Checkout_Block_Onepage_Link
class. where you will check if your quote has any product from the product-coupon linking defined in your module and coupon is not applied yet. Similar thing you can should do for Multishipping method if it is enabled in your Magento. So whenever coupon coupon code will be applied page will refresh and button will get enabled.Upvotes: 1