itvietnam Posted June 7, 2023 Share Posted June 7, 2023 Hi, I have this hook below with named file: includes/hooks/hook_resellerclub.php Currently i have 3 registrar: registrarA registrarB registarC May I know how to disable this hook (do not apply) for registrarC? <?php function hook_transliterate($string) { $string = str_replace("à","a",$string); $string = str_replace("á","a",$string); $string = str_replace("?","a",$string); $string = str_replace("?","a",$string); $string = str_replace("ã","a",$string); $string = str_replace("â","a",$string); return $string; } add_hook("Transliteration",1,"hook_transliterate"); ?> Thanks, 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.