× Joomla Facebook Connect support forum

Topic-icon Community Builder Integration

Active Subscriptions:

None
14 years 3 months ago #2695 by jordanw
Hi all

I'm not sure if this has been addressed but I noticed that if I set it to always import with Community Builder, it was never updating the avatar and other information when I logged in via facebook connect.

I narrowed it down to the jfbconnectuser plugin, jfbconnectuser.php

there is an if statement on line 62:
if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('js_import_always'))
{
JFBConnectJomsocialHelper::importFBProfile();
JFBConnectCommunityBuilderHelper::importFBProfile();
}

Notice that it is only checking the JomSocial always import setting. to fix I changed to:

if (JFBConnectFacebookHelper::$initialRegistration || $configModel->getSetting('js_import_always') || $configModel->getSetting('cb_import_always'))
{
JFBConnectJomsocialHelper::importFBProfile();
JFBConnectCommunityBuilderHelper::importFBProfile();
}
The topic has been locked.
Support Specialist
14 years 3 months ago #2784 by alzander
Wow, not sure how we missed that, and thanks for pointing it out. We'll make sure that fix will be in our next release.
The topic has been locked.
Active Subscriptions:

None
14 years 2 months ago #2883 by jonbrennan
Thanks Jordanw.

SourceCoast staff - it would be a good idea to email all users who have purchased as this is a bug.
The topic has been locked.