Search the Community
Showing results for tags 'domain'.
-
Unveil the power of a cutting-edge module which seamlessly integrates with your OpenProvider account and also helps you to automate tasks like like domain provisioning and domain management. Key Features of OpenProvider WISECP Registrar Module -Domain Registration / Transfer / Renew -TLD/Bulk Price Importer -Whois Management -Manage DNS -Enable/Disable DNNESC -Domain Check Availability -Get EPP code -Lock/Unlock Registration https://whmcsglobalservices.com/openprovider-for-wisecp/ Annually Price is $120.00
-
- domain
- wisecp modules
-
(and 1 more)
Tagged with:
-
Hi, if you want to sort your tlds on domain page alphabetically you could add the following php function to "/templates/website/your-template/domain.php". Search for the line (in modern theme it is line 766) <?php if(isset($tldList) && is_array($tldList) && sizeof($tldList)){ foreach($tldList AS $row){ and add before the foreach this line: usort($tldList, function($a, $b) { return strcmp($a['name'], $b['name']); }); So it looks like: <?php if(isset($tldList) && is_array($tldList) && sizeof($tldList)){ usort($tldList, function($a, $b) { return strcmp($a['name'], $b['name']); }); foreach($tldList AS $row){ Voila, your array $tldList will be sorted alphabetically. Regards Philipp