
View all posts
Disable Currency in WHMCS
In order to force a particular currency in WHMCS, we can create a hook file.
First, create a hook file like so:
/home/user/path-to-whmcs/includes/hooks/myhook.php
With the following code:
<?php
if($_SESSION['currency'] != '1') {
$_SESSION['currency'] = '1';
}
From now on, users cannot change their currency from currency ID 1 (it should always be your default currency) – even if currency selectors are present or currency=x is included in the URL.