• Resolved jenhanni

    (@jenhanni)


    I have unchecked the “Attempt to auto-locate the user:” box but i am still getting the browser autolocate option when i load the page. I have cleared my cache etc but it is still happening – can you advise?

    The page I need help with: [log in to see the link]

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

    (@tijmensmit)

    Try to add this code to the functions.php inside your active theme folder.

    add_filter( 'wpsl_js_settings', 'custom_js_settings' );
    
    function custom_js_settings( $settings ) {
    
        $settings['autoLocate'] = false;
    
        return $settings;
    }
    Thread Starter jenhanni

    (@jenhanni)

    Thank you that’s worked perfectly

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Attempt to auto-locate the user – Unchecked but still attempting to auto locate’ is closed to new replies.