XF 2.0 How to remove FORCE privacy and terms and rules?

Robdenio

Member
So i mistakenly saved the "Force privacy policy statement" and the "force terms" pages

How can i remove this so my users don't have to accept?

Thanks
 
This isn't really something we'd recommend, but if you enable debug mode in your config.php, then use the control panel search for "privacyPolicyLastUpdate". That will take you to the options related to the privacy policy and terms last updates. Set the options to 0 and save. Finally, remove debug mode.
 
Most likely you have used invalid characters or the file has been saved in the wrong format/encoding.

Use Notepad++ to edit config.php and ensure you use ' and not magic quotes or `.

PHP:
$config['debug'] = true;
 
Top Bottom