Jump to content

Limit maximum number of products to add to the shop


Recommended Posts

Hello, I want to set a limit to a number of products that can be created in Back Office.

 

For example I want to allow admin to add only 200 products and not more.

I was trying to find a SQL query which handles product creation, but couldn't find this.

 

Any ideas how to achieve this?

Link to comment
Share on other sites

in this case you have to modify productController located in /controllers/front/ProductController.php file

you have to define there if condition to check number of products that you've got (for example, you can check number of products with simple count sql query on ps_product table)

and if you've got more than 200 - you have to block possibility to add products.

Link to comment
Share on other sites

×
×
  • Create New...