Rapec Posted October 1, 2013 Share Posted October 1, 2013 Hello, is that possible to put the custom client fields into the registration form with different sequences? For example: - Custom client field - First Name - Last Name - Custom client field - Company name - Custom client field - Address 1 - Custom client field ... Thank you 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 1, 2013 Share Posted October 1, 2013 yes, just add the code below where you want to place your client field... {foreach key=num item=customfield from=$customfields} {if $customfield.name eq "Custom1"} <tr><td>{$customfield.name}</td><td>{$customfield.input}</td></tr> {/if}{/foreach} "Custom1" is the name of the field you want to add (rename for your custom field). add the code wherever you want to add a custom field and change the "Custom1" in the {if} statement to the name of the custom field to add at that location. 0 Quote Link to comment Share on other sites More sharing options...
Rapec Posted October 1, 2013 Author Share Posted October 1, 2013 Ohhhh, brilliant! Thank you very much for the help 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.