Notify Me When This Product Is Back In Stock

Hello,

how to apply "Notify me when this product is back in stock" to each and every product in store?

Thank you

In phpMyAdmin

UPDATE cscart_products SET out_of_stock_actions = 'S';

In phpMyAdmin

UPDATE cscart_products SET out_of_stock_actions = 'S';

As always your contribution is much appreciated :) thanks

You might also want to set the default value to 'S' for future products added.

ALTER TABLE `cscart_products` CHANGE `out_of_stock_actions` `out_of_stock_actions` CHAR(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'S';

You might also want to set the default value to 'S' for future products added.

ALTER TABLE `cscart_products` CHANGE `out_of_stock_actions` `out_of_stock_actions` CHAR(1) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'S';

Thank you!

Can someone explain in a few more steps how to achieve this?
Thanks in advance.

Go to control panel on your hosting, log in the phpMyAdmin and run there mentioned queries