Search code examples
magentomagento-1.9product

set daily limit of a product magento


How I can set a daily order limit for a particular product?

For example if we set the daily limit for a product (test Product) to 5, then the maximum quantity available for the product is 5 on daily basis.

If the product quantity order is reached for a day, then on add to cart a message is shown that the daily limit for product order has reached the maximum level.


Solution

  • There is no default way to achieve this with Magento. You need to create your own extension.

    The extension should do:

    • Add a field to Magento Admin product detail page where an individual daily limit per product can be set
    • Add a check on when product is added to cart if the daily limit has been reached
    • Optional: A cronjob that restores the daily limit after 24h

    Please inform yourself about how to write an extension and show us some code so we can provide help. Without any code we cannot help and I totally agree with @enigmativity.