X
Asked
How to turn of Send me email when someone reply for all users by default. If someone need to use Send me email when someone reply then he could turn it on.
- MSAnswered
Hello,
You can do so by running the queries below on your database
UPDATE `tec_users` SET `subscription` = 4; ALTER TABLE `tec_users` CHANGE `subscription` `subscription` TINYINT(1) NULL DEFAULT '4';
Thank you
- Login to Reply