• Juba

    (@brightonseo)


    This is my third post regarding this plugin as someone keeps deleting them so I’ll just copy it now so I can just paste if it gets deleted again.
    I’ve installed this plugin but it doesn’t show up in my theme login or signup page. Can someone explain why it doesn’t work because it only shows in profiles page.

    https://wordpress.org/plugins/nextend-facebook-connect/

Viewing 1 replies (of 1 total)
  • Plugin Author Nextendweb

    (@nextendweb)

    Hi!

    We are not able to delete any posts(Only forum admins have that right.). I don’t know what happens there.

    You should check the do_action(…) calls in your theme. We are subscribed for three for the login:

    add_action('login_form', 'new_add_fb_login_form');
    add_action('register_form', 'new_add_fb_login_form');
    add_action('bp_sidebar_login_form', 'new_add_fb_login_form');

    Also you could debug if the new_add_fb_login_form() function is called on those pages.
    Write the following into that function:

    echo "This is a test";
    exit;

    If you see this message, you should debug the JavaScript in the new_add_fb_login_form() function. Simple console.log() will do the trick.

Viewing 1 replies (of 1 total)

The topic ‘My posts keep getting deleted’ is closed to new replies.