• Resolved amityweb

    (@amityweb)


    This plugin has several issues:-

    1) Lots of JS errors like
    (index):617 Uncaught TypeError: Cannot read property ‘init’ of undefined
    at fbl_init ((index):617)
    at (index):468

    2) It injects the Facebook login in the middle of the Theme my login form

    3) If I use the shortcode to put it where I want it, its shown twice because its still in the middle of the theme my login form and where the shortcode is.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Damian

    (@timersys)

    Hi @amityweb,

    1) Can you show a url ? Are you using any cache plugin or minification that could affect normal behavior?
    2) The plugin injects the login button on wordpress login_form hook. If your theme uses the same hook it will be added automatically, but you can remove it if you don’t mind to also have it removed from wp-login.php add in your functions.php the following

    global $fbl;
    if( isset($fbl->fbl) ) {
        remove_action( 'login_form', array( $fbl->fbl, 'print_button' );
        remove_action( 'login_form', array( $fbl->fbl, 'add_fb_scripts' );
    }

    3) That’s normal

    Thread Starter amityweb

    (@amityweb)

    Sorry no we are not using it now due to the above issues.

    1) No caching or minification. Its in Supreme Directory which is a child theme of Directory Starter for the GeoDirectory plugin.

    2) Ok good to know

    3) Probably fixed by 2)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issues with this plugin’ is closed to new replies.