MyBB Community Forums

Full Version: Removing member register agreement?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi Smile

as topic says i want to remove this agreement so users just go straight to form, what files do i need to delete/change ?
This would require a core edit. Download the attached member.php and replace it with the current one in your forum's root directory.

[attachment=23988]
Or if you've already modified member.php file and do not want to lose those edits, here is how to do it yourself.

If you want to disable registration Agreement, and want to redirect users directly to user Details page then here is how;

Open member.php and find and remove the following;
	if((!isset($mybb->input['agree']) && !isset($mybb->input['regsubmit'])) || $mybb->request_method != "post")
	{
		// Is this user a COPPA user? We need to show the COPPA agreement too
		if($mybb->settings['coppa'] != "disabled" && ($mybb->cookies['coppauser'] == 1 || $under_thirteen))
		{
			if($mybb->settings['coppa'] == "deny")
			{
				error($lang->error_need_to_be_thirteen);
			}
			$lang->coppa_agreement_1 = $lang->sprintf($lang->coppa_agreement_1, $mybb->settings['bbname']);
			eval("\$coppa_agreement = \"".$templates->get("member_register_agreement_coppa")."\";");
		}

		$plugins->run_hooks("member_register_agreement");

		eval("\$agreement = \"".$templates->get("member_register_agreement")."\";");
		output_page($agreement);
	}
	else
thanks alot Smile