Rahat_Arif Posted September 27, 2023 Share Posted September 27, 2023 Hi, It is my goal to create a hook that, when a new client clicks on the Complete Order button after first ordering, the client is forced to log into the client area and then redirected to my custom page without first seeing the homepage. Please note: This is only for new clients Thanks in advance 0 Quote Link to comment Share on other sites More sharing options...
techwthquestion Posted October 11, 2023 Share Posted October 11, 2023 Try this one <?php use WHMCS\User\Client; add_hook('ClientAreaPage', 1, function($vars) { if (Client::isLoggedIn()) { $userId = (int) Client::getClientID(); $clientDetails = Capsule::table('tblclients') ->where('id', $userId) ->first(); $isFirstOrder = ($clientDetails->orders == 1); if ($isFirstOrder) { header("Location: https://yourdomain.com/custom-page-url"); exit; } } }); 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.