• Hi i am using linstar wp theme on https://www.theartofchart.com . When anyone who try to login by clicking on the my-account tab on the home page and clicks on login button after submitting the login details , the browser reloads to the same login page.

    I am facing this issue specifically on chrome browser. I have updated my chrome browser and clear the cache also but it didn’t work.

    Anyone there who has the knowledge , please help!

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @realpeacemaker

    Please add the following code to your function.php to redirect the user to the home page of the site after successful login.

    /*** Redirecting user to home page after successful login *******/

    function custom_redirect_after_login($redirect_to, $requested_redirect_to , $user) {
        $redirect_to = home_url();
        return $redirect_to;
    }
    
    add_filter( 'login_redirect', 'custom_redirect_after_login',10,3);

    I hope this will override default redirection and redirect a visitor to the home page.
    Thanks.

    Thread Starter realpeacemaker

    (@realpeacemaker)

    I have tried but it didn’t works. I am facing this issue on chrome only ,as my website has no ssl so it might be an https/ssl issue that keep forcing to reload the login page again.

    Thread Starter realpeacemaker

    (@realpeacemaker)

    And let me clarify you that i am not facing any issue in wp-admin login . I am facing this issue when i try to login to the https://theartofchart.net/my-account/ page by entering the login details , then this login page reloads again.

    Plugin Support con

    (@conschneider)

    Engineer

    Hi there,

    This sounds like a conflict between active components.
    I wrote a help article on how to check for conflict and similar common issue scenarios here: https://conschneider.de/how-to-check-and-resolve-conflict-in-wordpress-and-woocommerce/ – it includes a checklist which you might find helpful.

    Thread Starter realpeacemaker

    (@realpeacemaker)

    I have also tried deactivating plugins and switching to other themes. but it didn’t work. I think i have a deeper understanding of the problem now and found that this is https/ssl issue which was occurred on google chrome version 48 but now it’s occurring on my google chrome browser which is already a 53.0___(updated version) .

    As my website is http that’s why the chrome creating the issue.And i don’t know how to resolve it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Woocommerce my-account page reloads to the same page when try to login on chrome’ is closed to new replies.