Okay
  Public Ticket #2981725
Redirect "shop as customer" href
Closed

Comments

  •  1
    Mervin started the conversation

    Hi,

    How can I make agent be redirected to a specific URL/page instead of the shop-page by default, when clicking on "Shop as customer" via Agent dashboard?

  •  1,906
    WebWizards replied

    Hi Mervin,

    You can achieve this by adding the following code snippet to your site:

    add_filter('salesking_shop_as_customer_link', function($link){
        $link = 'yourpage'; // add your link or page here
        return $link;
    }, 10, 1);
    

    Kind regards,

    Stefan