ManagedCloud-Hosting Posted May 7, 2020 Share Posted May 7, 2020 Hi, I tried using the below hook for support pin. Working fine and Pin is showing but Support Pin Word is not showing...Check Screenshot...please help I found two hooks which is better 1> HOOK 1 use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar) { $clientID = intval($_SESSION['uid']); $SupportPIN = rand(1000, 9999) . rand(1000, 9999); $firstSidebar = $primarySidebar->getFirstChild(); if ($firstSidebar) { $firstSidebar->setBodyHtml($SupportPIN); } }); 2> HOOK 2 <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar) { // The Support PIN will be generated automatically and will change daily. // The Support PIN will have the format of: Day (1st and 2nd numbers), Month (3rd and 4th numbers), Client ID (5th, 6 or 7th number) and then the last 2 digits is the current year. $clientID = intval($_SESSION['uid']); $SupportPIN = date("dm".$clientID."y"); $firstSidebar = $primarySidebar->getFirstChild(); if ($firstSidebar) { $firstSidebar->setBodyHtml($SupportPIN); } }); 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 8, 2020 Share Posted May 8, 2020 14 hours ago, VirtualWorldGlobal said: I tried using the below hook for support pin. Working fine and Pin is showing but Support Pin Word is not showing...Check Screenshot...please help i'm not sure what you mean by Support Pin Word not showing (as neither hook generates a word), but i'll give you another alternative solution... ... those hooks can show the same pin in a sidebar, navbar, homepage panel or the admin area... and other places too. 🙂 1 Quote Link to comment Share on other sites More sharing options...
ManagedCloud-Hosting Posted May 8, 2020 Author Share Posted May 8, 2020 Thanks @brian! 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.