MyBB Community Forums

Full Version: modify registration agreement
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
im looking where to find the registration agreement content. I looked in the member_register_agreement template, but all i see are language->agreement iterated. Where can i go to add another agreement or modify the current ones?

I dont see any file in the core in /inc/languages/english for registration or agreement at all. I checked in global and couldnt find it


member_register_agreement template
<form action="member.php" method="post">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$mybb->settings['bbname']} - {$lang->agreement}</strong></td>
</tr>
{$coppa_agreement}
<tr>
<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>
</tr>
</table>
Admin CP -> Languages -> * Your language * -> member.lang.php

Then edit:

agreement_1
agreement_2
agreement_3
agreement_4
agreement_5
ah ok thank you.

I didnt even know you could modify the language files from within ACP. I have always done it via SSH.
(2018-01-24, 07:23 PM)metulburr Wrote: [ -> ]ah ok thank you.

I didnt even know you could modify the language files from within ACP. I have always done it via SSH.

You learn something new everyday my friend.