webhostinghotel Posted January 23, 2015 Share Posted January 23, 2015 Hi there, I'm a very happy user of WHMCS but I have one problem. I can't oreder my .dk domans directly from WHMCS since dk-hostmaster requires eiter a VAT number or social security number and there is nowhere to put them in WHMCS. I'm using Hexonet as registrar. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted January 23, 2015 Share Posted January 23, 2015 generally, you would use Additional Domain Fields to do this... http://docs.whmcs.com/Domains_Configuration#TLD_Specific_Additional_Domain_Fields in your /includes directory, there should be an unencrypted file called additionaldomainfields.php - this contains additional fields for some TLDs (domains) and you will need to add some code for .dk domains somewhere in the file.. however, Hexonet have their own WHMCS module, so if you're using their module, then it includes its own additional domain fields entry for .dk domains - specifically asking for VAT ID if the registrant is a company. https://wiki.hexonet.net/wiki/WHMCS_Modules https://wiki.hexonet.net/wiki/DK Please note that you have to state the VAT-ID during the registration if the owner/admin contact is a organization (company). The VAT-ID is required and can be specified on creating or modifying the contact handle of the registrant / admin contact. if you don't use their WHMCS module, then you could try adding the code below to your includes/additionaldomainfields.php file... // .DK $additionaldomainfields[".dk"][] = array("Name" => "Registrant VAT ID", "Type" => "text", "Size" => "20", "Default" => "", "Required" => false, "Description" => "(Only for Organization)", "LangVar" => "X-REGISTRANT-VATID",); $additionaldomainfields[".dk"][] = array("Name" => "Admin VAT ID", "Type" => "text", "Size" => "20", "Default" => "", "Required" => false, "Description" => "(Only for Organization)", "LangVar" => "X-ADMIN-VATID",); 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.