Quote:
Originally Posted by jmmy
How do I disable the email that goes out after registration and automatically activate the users?
i use 4.0.3
thanks
|
You can do this if you change php code.
Please open VIVVO_ROOT/lib/vivvo/service/login.service.php file and try to find this code (around line 152):
Code:
$data['activated'] = '0';
replace with this:
Code:
$data['activated'] = '1';
and try to find this code (around line 166):
Code:
if ($this->_post_master->sql_insert()){
replace that code with this:
Code:
if ($this->_post_master->sql_insert()){
return true;
After that your users automatic will be activated and mail will not be sent.