Where is: your_date_of_birth_is_required

rotozuk

Member
I'd like to modify the statement that currently reads: "Your date of birth is required" during the new user sign up.

I found the template file "register_form" and it has the code:
Code:
    <dl class="ctrlUnit OptOut">
        <dt>{xen:phrase date_of_birth}:</dt>
        <dd>
            <xen:include template="helper_birthday_input">
                <xen:map from="$fields" to="$user" />
            </xen:include>
            <xen:if is="{$dobRequired}"><p class="explain">{xen:phrase your_date_of_birth_is_required}</p></xen:if>
        </dd>
    </dl>

Where can I edit the text used for "your_date_of_birth_is_required" as I believe that is what I need to edit. Right?

Why am I doing this?
I have received a number of complaints from new users or potential users of my site that do not like the date of birth requirement. The average age of my users is around 50, so a slightly different demographic then some. Anyhow, they seem to have some trust issues and do not like giving out this information.I'd like to attempt to explain COPPA to new users why we require the DOB, and that they can hide this DOB using their user settings.

Thanks,
-Wayne
 
Top Bottom