Damo Posted October 2, 2009 Share Posted October 2, 2009 Hi, Is there a way to clean up the look of the form where customers enter their eligibility information for .au domains? We're using the Distribute.IT module and the form fields aren't lined up and it's the only screen during the order process that looks this way. From what I can see this form isn't templated in the same way as the rest of WHMCS. Any suggestions on how to modify it or request that it be modified would be appreciated. 0 Quote Link to comment Share on other sites More sharing options...
ozace Posted October 2, 2009 Share Posted October 2, 2009 it's a case of putting a table to cover the output in configuredomains.tpl. Take a look at the configuredomains.tpl that you use (depends which orderforms template you are using). In the one I use I looked for: {foreach key=domainfieldname item=domainfield from=$domain.fields} {$domainfieldname}: {$domainfield}<br /> {/foreach} and I replaced with: <table cellspacing="0" cellpadding="0"> {foreach key=domainfieldname item=domainfield from=$domain.fields} <tr><td>{$domainfieldname}: </td><td>{$domainfield}</td><td> </td></tr> {/foreach} </table> that tidied it up nicely Jim 0 Quote Link to comment Share on other sites More sharing options...
Damo Posted October 2, 2009 Author Share Posted October 2, 2009 Thanks Jim. Just needed a pointer to which template it is 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.