Just thought i'd feedback in case anyone is looking at the
Facebook connect mod.
default when you use the facebook connect mod. it imports the users facebook profile into the website field in user control panel, so if your using this mod ideally you would have the facebook profile url enterend into the facebook profile field rather than website.
All you need to do is the following.
FILE: root/fbconnect.php at line 110.
Find
Code: Select all
$sql_ary['user_website'] = (trim($user->data['user_website']) == "") ? $uinfo[0]['profile_url'] : $user->data['user_website'];
And Replace with
Code: Select all
$sql_ary['user_facebook'] = (trim($user->data['user_facebook']) == "") ? $uinfo[0]['profile_url'] : $user->data['user_facebook'];
And thats it.. works a treat.. if anyone wants to test let me know i'll send you a PM with a link to my test board. you can sign in with your facebook user id and password and the profile url will import and into this mods facebook profile field
(little off topic but on the basis it allows anyone wanting to run both mods thought it may be usefull to someone)