MyBB Community Forums

Full Version: disable Privacy Policy when you signing up?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 6xj0QvO.png]




Appreciated your help.
(2019-06-25, 06:53 AM)zecexe Wrote: [ -> ][Image: 6xj0QvO.png]




Appreciated your help.

Mine is more of a policy question than a technical question: Most likely you are going to collect Personally Identifiable Data, and in many juridsdictions doing so is regulated by law.

Why do you want to disable the privacy policy?
Here is a workaround:

Open member_register_agreement template. Find:
<form action="member.php" method="post">
change it to:
<form action="member.php" method="post" style="display: none;">

Now find:
</form>
ADD just after that:
<script type="text/javascript">$('.button[name="agree"]').trigger('click');</script>

Save the template. This should do the trick.
Nothing happened.


[Image: R8yb3cZ.png]

[Image: hGrgRKb.png]
(2019-06-27, 05:08 AM)zecexe Wrote: [ -> ]Nothing happened.

It is tested. Try clearing cache, hard refresh page.
You have COPPA enabled!
You can see the submission of birthdate for COPPA - the agreement page is being skipped. It is working for me.

If you wan't directly to go to Registration page then disable COPPA.
Working, thank you.