Okay
  Public Ticket #3683791
Redirect after logout
Closed

Comments

  •  1
    Herve started the conversation

    Hi, when I'm login out, I'm now redirected to the agent dashboard at /agent-dashboard/ but I would like to redirect to the homepage or even better to the my account page. I do not see any option to change the logout url, is it possible to force it through a function in the funtion.php file ? 

    Thanks for your support,

    Hervé

  •  2,114
    WebWizards replied

    Hello Hervé,

    It is possible to modify that logout redirect url, by adding  PHP code snippet to your site (to functions.php or to any snippets plugin).

    You can use this code to redirect to the my account page:

    add_filter('salesking_sales_agent_redirect', function($page){
        return get_permalink( wc_get_page_id( 'myaccount' ) );
    }, 10, 1);

    Let me know if you run into any issues,


    Kind regards,

    Stefan

  •  1
    Herve replied

    Hi,
    It's working fine, many thanks for your help.

    Best,

    Hervé

  •   WebWizards replied privately