Fix for users not being put in th specified user group.
Open the
*** Initialize app *** plugin under the vB Nexus product. It is listed at the top of the product for me.
Find the following line
Code:
$newusergroupid = ($vbulletin->options['vbnexusconfig_defaultusergroup']?$vbulletin->options['vbnexusconfig_defaultusergroup']:2);
Replace with this
Code:
$newusergroupid = ($vbulletin->options['vbnexusconfig_facebook_defaultusergroup']?$vbulletin->options['vbnexusconfig_facebook_defaultusergroup']:2);
The plugin is referencing variable that does not exist. The code change uses the correct variable for the optional user group.
As to the email question, none of these services are going to allow you to automatically pull the email address during a remote session. Your best bet would be to alter the vbnexus_choose_username template to include a mandatory email field. One of the plugins would have to be changed as well, not sure off the top of my head right now. This would prevent anybody from registering without entering a email address.