Comments 1Mervin started the conversationFebruary 15, 2022 at 9:26amHi,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? 2,219WebWizards repliedFebruary 16, 2022 at 7:51amHi 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 Sign in to reply ...
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?
Hi Mervin,
You can achieve this by adding the following code snippet to your site:
Kind regards,
Stefan