Quote:
Originally Posted by Veer
Thanks
I updated to the latest version, but still I can not see facebook connect button If I disable "Auto Register", I checked this on default vB style too.
|
Oops, it's really my mistake. Please do this file edit manually (I'm really sorry, honestly)
Open ./fbb/hook_global_start.php
Find
PHP Code:
if ($vbulletin->fbb['runtime']['enabled']
AND $vbulletin->fbb['config']['auto_register']
AND !$vbulletin->userinfo['userid']) {
eval('$template_hook["navbar_buttons_right"] .= "' . fetch_template('fbb_navbar_button') . '";');
}
Change it into
PHP Code:
if ($vbulletin->fbb['runtime']['enabled']
AND ($vbulletin->fbb['config']['auto_register'] OR $vbulletin->fbb['config']['auto_login'])
AND !$vbulletin->userinfo['userid']) {
eval('$template_hook["navbar_buttons_right"] .= "' . fetch_template('fbb_navbar_button') . '";');
}
Done