• Resolved Christof

    (@chris30003)


    Hello,

    The plugin creates an extra URL with “/?logintwitter=yes” which triggers an error code 5xx, could this be fixed in the next update?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support XootiX

    (@helloxootix)

    Hello,

    The error appears because the X is not setup correctly.
    Please follow the documentation

    Thread Starter Christof

    (@chris30003)

    Hello,

    Thanks for the feedback. Yes, but I have turned off the Twitter login.

    Plugin Support XootiX

    (@helloxootix)

    Hello,

    Yes, you’re correct. Ideally it shouldn’t process the login twitter request when turned off. Please use this snippet for now, I will do the needful in next update.

    add_action( 'init', function(){
    if( !function_exists( 'xoo_sl_handler' ) || !isset($_GET['logintwitter']) ) return;
    wp_safe_redirect( esc_url( remove_query_arg( 'logintwitter' ) ) );
    exit;
    }, 5 );
    Thread Starter Christof

    (@chris30003)

    Hey,

    Thanks for your quick help 🙂

    Plugin Support XootiX

    (@helloxootix)

    Happy to help! Would appreciate your feedback here
    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘?logintwitter=yes Error’ is closed to new replies.