Plugin Author
Damian
(@timersys)
I will have to play with that plugin, never used but I hear of it
Plugin Author
Damian
(@timersys)
I can’t reproduce the error. Looks fine for me
Thread Starter
lazaa
(@lazaa)
I have played around a bit. It’s only on the register page when you enable the “Custom Passwords” option that allows users to enter their own password. Those fields will be displayed under the Connect with Facebook button that is confusing.
@lazaa: did you manage to make both plugins work OK together?
Thanks.
Thread Starter
lazaa
(@lazaa)
Yes, but I use a heavily customized theme. I have a template for the register form so that I could move the button wherever I wanted (on top of the form).
I could solve this problem by removing these 4 lines:
$this->loader->add_action( 'login_form', $this->fbl, 'print_button' );
$this->loader->add_action( 'login_form', $this->fbl, 'add_fb_scripts' );
$this->loader->add_action( 'register_form', $this->fbl, 'print_button' );
$this->loader->add_action( 'register_form', $this->fbl, 'add_fb_scripts' );
From class-facebook-login.php and adding the shortcode [fbl_login_button redirect=”” hide_if_logged=””] where I wanted it. It also helped to set the redirection correctly.