XF 1.2 Is there a Registration Notice Area?

WCFA

Active member
When a new members joins and is approved.
I am unsure where to edit what the member receives in a way of the notice .
It is the notice I wish to modify.

The Admin / Options / Registration has nothing there and is where it logically would be.
But nothing is there, could someone point me in the right direction please?

Thanks
 
You can edit this template which is the template for the Thanks for registering page:

Admin CP -> Appearance -> Templates -> register_process

Just add your content to this template and it will be shown to people following the registration form.
 
Cool is the a particular part to input say if I wanted member to affirm they read our TOS and a few other things
before joining ?

I found the place you mentioned

<div class="systemMessage">

<xen:if is="{$user.user_state} == 'email_confirm'">
{xen:phrase thanks_for_registering_to_complete_registration_follow_link}
<xen:elseif is="{$user.user_state} == 'moderated'" />
{xen:phrase thanks_for_registering_registration_must_be_approved}
<xen:elseif is="{$facebook}" />
{xen:phrase thanks_creating_account_using_facebook_account_active}
<xen:else />
{xen:phrase thanks_for_registering_complete}
</xen:if>

<div class="baseHtml">
<ul>
<xen:if is="{$redirect}"><li><a href="{$redirect}">{xen:phrase return_to_page_you_were_viewing}</a></li></xen:if>
<li><a href="{xen:link index}">{xen:phrase return_to_forum_home_page}</a></li>
<li><a href="{xen:link account}">{xen:phrase edit_your_account_details}</a></li>
</ul>
</div>

Just not sure where it goes to not mess everything up.
Not sure why it added the smiley
 
Top Bottom