Hi there,
this is how i fix the problem for my website :
(i’ve rewrite a part of plugin )
Edit file bp-fp-loader.php :
Replace :
$current_url = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
BY :
if(is_ssl()){
$current_url = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}else{
$current_url = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
Now the code detect if we are in https or not and use the good protocol !