XF 1.4 Location Field Description

JamesBrown

Well-known member
I have a number of custom fields I require for registration. These all have descriptions as to the precise information required. I now have the built-in location field showing up as part of the process. How can I add a description to this field so it appears underneath the Location field at registration. Thanks
 
This should work:

Rich (BB code):
            <dd>
                <input type="text" name="location" value="{$fields.location}" class="textCtrl" />
                <p class="explain">YOUR TEXT HERE</p>
            </dd>
 
Thanks! Shame it'll require 5 template edits to get all 4 registration forms by the looks of it, then the personal details page.

Would be handy if it was editable with all the other custom user fields.
 
Top Bottom