petru Posted February 14, 2014 Share Posted February 14, 2014 Hey Guys, I have an issue that I need to resolve and I'm not sure where the problem begins. I've had a complaint that the .com.au domains are asking for registration ID and Name but there is no field to put this in. I checked the additionaldomainfields.php file and found the following code which looks perfect to me. // .AU $additionaldomainfields[".com.au"][] = array("Name" => "Registrant Name", "LangVar" => "autldregname", "Type" => "text", "Size" => "20", "Default" => "", "Required" => true,); $additionaldomainfields[".com.au"][] = array("Name" => "Registrant ID", "LangVar" => "autldregid", "Type" => "text", "Size" => "20", "Default" => "", "Required" => true,); $additionaldomainfields[".com.au"][] = array("Name" => "Registrant ID Type", "LangVar" => "autldregidtype", "Type" => "dropdown", "Options" => "ABN,ACN,Business Registration Number", "Default" => "ABN",); $additionaldomainfields[".com.au"][] = array("Name" => "Eligibility Name", "LangVar" => "autldeligname", "Type" => "text", "Size" => "20", "Default" => "", "Required" => false,); $additionaldomainfields[".com.au"][] = array("Name" => "Eligibility ID", "LangVar" => "autldeligid", "Type" => "text", "Size" => "20", "Default" => "", "Required" => false,); $additionaldomainfields[".com.au"][] = array("Name" => "Eligibility ID Type", "LangVar" => "autldeligidtype", "Type" => "dropdown", "Options" => ",Australian Company Number (ACN),ACT Business Number,NSW Business Number,NT Business Number,QLD Business Number,SA Business Number,TAS Business Number,VIC Business Number,WA Business Number,Trademark ,Other - Used to record an Incorporated Association number,Australian Business Number (ABN)", "Default" => "",); $additionaldomainfields[".com.au"][] = array("Name" => "Eligibility Type", "LangVar" => "autldeligtype", "Type" => "dropdown", "Options" => "Charity,Citizen/Resident,Club,Commercial Statutory Body,Company,Incorporated Association,Industry Body,Non-profit Organisation,Other,Partnership,Pending TM Owner ,Political Party,Registered Business,Religious/Church Group,Sole Trader,Trade Union,Trademark Owner,Child Care Centre,Government School,Higher Education Institution,National Body,Non-Government School,Pre-school,Research Organisation,Training Organisation", "Default" => "Company",); $additionaldomainfields[".com.au"][] = array("Name" => "Eligibility Reason", "LangVar" => "autldeligreason", "Type" => "radio", "Options" => "Domain name is an Exact Match Abbreviation or Acronym of your Entity or Trading Name.,Close and substantial connection between the domain name and the operations of your Entity.", "Default" => "Domain name is an Exact Match Abbreviation or Acronym of your Entity or Trading Name.",); $additionaldomainfields[".net.au"] = $additionaldomainfields[".com.au"]; $additionaldomainfields[".org.au"] = $additionaldomainfields[".com.au"]; $additionaldomainfields[".asn.au"] = $additionaldomainfields[".com.au"]; $additionaldomainfields[".id.au"] = $additionaldomainfields[".com.au"]; None of these fields are showing up on the domain registration page. Can anyone tell me why? Thanks 0 Quote Link to comment Share on other sites More sharing options...
Damo Posted February 14, 2014 Share Posted February 14, 2014 It's a bug. Case #4021. The following fixes it. Open the configure configuredomains.tpl template file within your template 2. Find the line: {if $domain.configtoshow} 3. And replace with: {if $domain.configtoshow || $domain.fields} 0 Quote Link to comment Share on other sites More sharing options...
petru Posted February 14, 2014 Author Share Posted February 14, 2014 Thanks Damo, All Fixed Incase anyone else has the same problem. the directory is in the /templates/orderforms/ directory. 0 Quote Link to comment Share on other sites More sharing options...
Wabun Posted February 17, 2014 Share Posted February 17, 2014 Thanks a lot, i could solve my problem.. 0 Quote Link to comment Share on other sites More sharing options...
slim Posted February 18, 2014 Share Posted February 18, 2014 What version is this a bug in? When these things get fixed, they need to release them - at the very least in the forum so that we can at least know about the patch. 0 Quote Link to comment Share on other sites More sharing options...
Damo Posted February 18, 2014 Share Posted February 18, 2014 It appeared in 5.3.3. We noticed within hours updating it. We register quite a few .au domains. I opened a support ticket and was told what to change and given the bug report id. It doesn't affect the modern order form and one other I think. We use a custom template but weren't aware of any changes to the templates in the changelog. 0 Quote Link to comment Share on other sites More sharing options...
slim Posted February 19, 2014 Share Posted February 19, 2014 Is this fixed in 5.3.4? 0 Quote Link to comment Share on other sites More sharing options...
Damo Posted February 19, 2014 Share Posted February 19, 2014 According to the changelog it is. 0 Quote Link to comment Share on other sites More sharing options...
slim Posted February 19, 2014 Share Posted February 19, 2014 hehe.. thanks.. Fingers crossed then. 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.