sol2010 Posted May 2, 2024 Share Posted May 2, 2024 How do we completely remove or disable Sitejet? We have absolutely no need for it and our customers do not need to see it at all. So what's the best way of disabling / removing site jet ? 1 Quote Link to comment Share on other sites More sharing options...
MENKI Posted May 7, 2024 Share Posted May 7, 2024 Hello, I have exactly the same problem! Why do all of my customers suddenly see this in the customer panel? Where can I deactivate this? Greetings 0 Quote Link to comment Share on other sites More sharing options...
Damo Posted May 11, 2024 Share Posted May 11, 2024 Are you using cPanel servers? Make sure to disable (uncheck) SiteJet from all plan feature sets. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Technical Analyst II Solution WHMCS JoshQ Posted August 10, 2024 WHMCS Technical Analyst II Solution Share Posted August 10, 2024 @Damo's suggestion is correct. The presence of Sitejet within WHMCS is dependent on its being enabled on any connected cPanel / Plesk servers. If you do not want to offer Sitejet to your customers, disable the feature on your cPanel / Plesk servers. If WHMCS does not detect that Sitejet is supported, then it will not display anything related to Sitejet. Hope this helps 🙂 0 Quote Link to comment Share on other sites More sharing options...
Web Host Pro Posted August 29, 2024 Share Posted August 29, 2024 I don't want Sitejet links in WHMCS, but I want them in cPanel still. How do I do this? The Sitejet links in WHMCS do not work right and look horrible. 0 Quote Link to comment Share on other sites More sharing options...
JCM Posted October 12, 2024 Share Posted October 12, 2024 La misma prregunta, llevo dias buscando la opción para que se pueda eliminar sitejet del whmcs, y no de plesk 1 Quote Link to comment Share on other sites More sharing options...
Abdelkarim Posted December 30, 2024 Share Posted December 30, 2024 Como no WebPros y sus porquerias y falta de etica metiendo por todos los lados su porqueria. 0 Quote Link to comment Share on other sites More sharing options...
Kane William Posted January 13 Share Posted January 13 On 8/10/2024 at 4:34 PM, WHMCS JoshQ said: @Damo's suggestion is correct. The presence of Sitejet within WHMCS is dependent on its being enabled on any connected cPanel / Plesk servers. If you do not want to offer Sitejet to your customers, disable the feature on your cPanel / Plesk servers. If WHMCS does not detect that Sitejet is supported, then it will not display anything related to Sitejet. Hope this helps 🙂 Thanks for sharing the valuable info. It was required to disable the on cPanel / Plesk servers. 1 Quote Link to comment Share on other sites More sharing options...
Easy Green Hosting Posted Friday at 07:20 PM Share Posted Friday at 07:20 PM add to custom.css #sitejetPromoPanel {display:none} [data-identifier="sitejet"] { display: none !important; } 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Technical Analyst WHMCS Danny Posted Saturday at 04:01 AM WHMCS Technical Analyst Share Posted Saturday at 04:01 AM You can remove the Edit with Sitejet Builder link from the left sidebar menu under the Actions sidebar when logged in as a client and looking at the Product Details page using this hook code: <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar) { $actionsMenu = $primarySidebar->getChild('Service Details Actions'); if ($actionsMenu instanceof MenuItem) { foreach ($actionsMenu->getChildren() as $child) { if (strpos($child->getLabel(), 'Sitejet') !== false) { $actionsMenu->removeChild($child->getName()); } } } }); See the attached screenshots showing this custom hook file in place in the /includes/hooks/ directory. The screenshots show that this link is no longer there after this hook code is added. You would create a file named "remove_sitjet_link.php" and add the above code into it, and upload it to your /includes/hooks/ directory. I tested this with WHMCS version 8.13.1. I hope that this helps someone. 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.