MyBB Community Forums

Full Version: Change Registration Agreement?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
'Not sure but I think the Registration Agreement is located here; inc/languages/english

And the file I think I'm supposed to modify is this;  usercp.lang.php


Is there an easy way for a non-techie to edit the Registration Agreement?



Thanks,

Craig
Which version of MyBB are you using ?

The variables are used in member_register_agreement template under member templates:

<td class="trow1">
<p>{$lang->agreement_1}</p>
<p>{$lang->agreement_2}</p>
<p>{$lang->agreement_3}</p>
<p>{$lang->agreement_4}</p>
<p><strong>{$lang->agreement_5}</strong></p>
</td>

You will find these variables to edit in ACP - Configuration - Languages. Click on options and edit language variables. member.lang.php
(2015-12-11, 10:26 PM)Ashley1 Wrote: [ -> ]Which version of MyBB are you using ?

The variables are used in member_register_agreement template under member templates:

<td class="trow1">
<p>{$lang->agreement_1}</p>
<p>{$lang->agreement_2}</p>
<p>{$lang->agreement_3}</p>
<p>{$lang->agreement_4}</p>
<p><strong>{$lang->agreement_5}</strong></p>
</td>

You will find these variables to edit in ACP - Configuration - Languages. Click on options and edit language variables. member.lang.php

Ashley1;  I'm using 1.8.6 (1806)

Ah ha!  Thanks.