ardge24 Posted June 5, 2012 Share Posted June 5, 2012 hi can anybody help me?? how can i add tlds / extensions to customer domain order form?? ex: on drop down they can choose .com .co.uk .org .net ect i am very new to this and require abit of help/advice as you can see thanks 0 Quote Link to comment Share on other sites More sharing options...
Strother Posted June 5, 2012 Share Posted June 5, 2012 (edited) These pages have the basics to get you started: http://docs.whmcs.com/Domains_Tab http://docs.whmcs.com/Domain_Pricing Edited June 5, 2012 by Strother 0 Quote Link to comment Share on other sites More sharing options...
rashmi Posted August 20, 2012 Share Posted August 20, 2012 hello, I have gone through both the above links and I have added the price and TLD in setup->Product/Services->Product Pricing but still the tld(.com, in etc) are not shown in the dropdown box while placing the order. Kindly help Thanks 0 Quote Link to comment Share on other sites More sharing options...
EksoKen Posted August 21, 2012 Share Posted August 21, 2012 Sample code could be taken from Utilities / Integration Code <form action="http://yourdomain.com/domainchecker.php" method="post"> <input type="hidden" name="token" value="your value" /> <input type="hidden" name="direct" value="true" /> Domain: <input type="text" name="domain" size="20" /> <select name="ext"> <option>.com</option> <option>.net</option> <option>.org</option> <option>.biz</option> <option>.info</option> </select> <input type="submit" value="Go" /> </form> 0 Quote Link to comment Share on other sites More sharing options...
FrancisKelly Posted September 28, 2012 Share Posted September 28, 2012 Hi You can create by this way also : $DomainMinLengthRestrictions[".asia"] = 3; $DomainMaxLengthRestrictions[".asia"] = 64; $DomainMinLengthRestrictions[".ws"] = 4; $DomainMaxLengthRestrictions[".ws"] = 63; $DomainRenewalGracePeriods[".com"] = "40"; $DomainRenewalMinimums[".co.uk"] = "180"; $DomainRenewalGracePeriods[".co.uk"] = "97"; $DomainRenewalGracePeriods = array(".com"=>"30",".net"=>"40",".uk"=>"97"); $DomainRenewalMinimums = array(".com"=>"180",".com.au"=>"90"); Default Values : The existing grace periods pre-defined in WHMCS are: .com = 30,.net = 30,.org = 30,.info = 15,.biz = 30,.mobi = 30,.name = 30,.asia = 30,.tel = 30,.in = 15,.mn = 30, .bz = 30,.cc = 30,.tv = 30,.eu = 0,.co.uk = 97,.org.uk = 97,.me.uk = 97,.us = 30,.ws = 0,.me = 30,.cn = 30, .nz = 0,.ca = 30 The minimum renewal periods are: .co.uk = 180,.org.uk = 180,.me.uk = 180,.com.au = 90,.net.au = 90,.org.au = 90 0 Quote Link to comment Share on other sites More sharing options...
sven31 Posted October 25, 2012 Share Posted October 25, 2012 WHMCS will use for domain only registrations ordered through the system... 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.