I want to enable "Silent Registration" on my site. So when the user creates an account with facebook, no registration emails are sent. I've tried to accomplish this in Joomla 2.5.2, but it doesn't seem to work for me. Setup details...
In User Manager:
- Allow User Registration = Yes
- New User Account Activation = None
- Notification Mail to Administrators = No
In Joomla User Plugin
- Auto-create Users = Yes
- Notification Mail to User = No
In JFBC Configuration:
- User Creation = Facebook User Only
- Skip Joomla User Activation = Yes
I also tried commenting out this line in components/com_users/models/registration.php on line 407 and added a return = true:
//$return = JFactory::getMailer()->sendMail($data['mailfrom'], $data['fromname'], $data['email'], $emailSubject, $emailBody);
$return = true;
But new users are still getting registration emails. Any ideas on how to disable this? All of my users are registering with facebook credentials using the JFBC extension.