• Resolved Debugger

    (@retrobeatcom)


    Hi,
    few of my members reported that the login through Facebook is not working correctly.
    5 out of 6 tries result in:
    “Facebook SDK returned an error: Connection timed out after 10000 milliseconds”

    Please advise!

    • This topic was modified 7 years, 3 months ago by Debugger.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Debugger

    (@retrobeatcom)

    Any updates?

    Ramona

    (@nextend_ramona)

    Hi @retrobeatcom

    we have pushed out Nextend Social Login 3.0. It has several improvements and I think this issue fixed as well.

    Thread Starter Debugger

    (@retrobeatcom)

    It looks like its fixed, but now i see another problem.
    From field on new registration email is set to WordPress instead to my website name. Any ideas?

    Ramona

    (@nextend_ramona)

    Hi @retrobeatcom

    When a user registers with the “default” WordPress registration, do you see the same “from” field at that email? Because the registration emails are handled entirely by WordPress, Nextend Social Login only tells WordPress to send out the registration email. So it should be the same in both cases.

    This could be solution for your problem: https://www.wpbeginner.com/plugins/how-to-change-sender-name-in-outgoing-wordpress-email/

    Thread Starter Debugger

    (@retrobeatcom)

    Hello,
    thanks for the quick reply.
    Actually, the SMTP plugin was the one to blame. It was previously overwriting the sender name but after the last update, it suddenly stopped.
    Anyway, a simple function solves the problem.
    Have a great day!

    PS:

    function change_mail_sender( $original_email_from ) {
        return get_bloginfo( 'name' );
    }
     
    add_filter( 'wp_mail_from_name', 'change_mail_sender' );
    Ramona

    (@nextend_ramona)

    Hi @retrobeatcom

    Great, I’m glad it worked out!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Facebook SDK returned an error: Connection timed out after 10000 milliseconds’ is closed to new replies.