Activex Posted December 15, 2020 Share Posted December 15, 2020 Hello! I need a hook to remove "Portal Home" (remove all: name, link, all) or change the url Thank you guys! 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted December 15, 2020 Share Posted December 15, 2020 58 minutes ago, Activex said: I need a hook to remove "Portal Home" (remove all: name, link, all) or change the url to remove it... https://github.com/Katamaze/WHMCS-Free-Scripts/blob/master/hooks/RemovePortalHomeBreadcrumb.php <?php add_hook('ClientAreaPage', 1, function($vars) { unset($vars['breadcrumb'][0]); return array('breadcrumb' => $vars['breadcrumb']); }); to change the link would involve not unsetting the first element of the $breadcrumb array in the hook, but changing it's link value. 2 Quote Link to comment Share on other sites More sharing options...
Activex Posted December 16, 2020 Author Share Posted December 16, 2020 Fantastic! ... ... this community does not move if you are not here! Thank you very much master Brian!! ...👌 1 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.