Hi, im using the following code to remove the Get epp link from the domains side bar, i guess the code is correct or im missing anything?
<?php
use WHMCS\View\Menu\Item as MenuItem;
add_hook('ClientAreaPrimarySidebar', 1, function(MenuItem $primarySidebar)
{
$primarySidebar->getChild('Domain Details Management')
->removeChild('Get EPP Code');
});