selfantagonist
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect] Register loopAll I know is mine was, ended up removing `add_action(‘sfc_login_new_fb_user’, ‘sfc_register_redirect’);
function sfc_register_redirect() {
wp_redirect(site_url(‘wp-login.php?action=register’, ‘login’));
exit;
}` from the register.php and it seems to be working fine.Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect] Register loopYes, this lets me work around the FB login system, but does me no good if a random person is trying to access the site. Ideally, I need it to shuffle them back to the login in screen, that way they can login in if they have a non-Facebook account (not everyone is necessarily going to want their Facebook linked to every site they go on), or can click the register button if they do not have an account.
Forum: Plugins
In reply to: [Simple Facebook Connect] [Plugin: Simple Facebook Connect] Register loopI am having the same problem. The login page keeps looping to the register page. However, if a person is not logged into Facebook it stays on the login in page. In the simple-facebook-connect/sfc-login.php is
// fix the reauth redirect problem add_action('login_form_login','sfc_login_reauth_disable'); function sfc_login_reauth_disable() { $_REQUEST['reauth'] = true; }Have tried that both set to true and to false and the problem is persists.