Hoi,
Thanks for pointing out that issue. The below code should fix ou up. It hasn't been tested, but it basically does what you're saying by stripping the URL returned from Facebook...
In the /plugins/jfbcprofiles/kunenea/kunenea.php file, around line 106, you'll see:
switch ($fieldId)
{
case "birthdate";Add the following code directly above the case "birthday" bit, so it looks like:
switch ($fieldId)
{
case "FACEBOOK":
$value = str_replace('http://www.facebook.com/', '', $value);
$value = str_replace('https://www.facebook.com/', '', $value);
$break;
case "birthdate";That will remove both http and https. Not sure if Facebook returns the https version, but best to try and remove it either way.
Hope that helps, and let us know how that goes!
Alex