nocte
Well-known member
- Affected version
- XF 2.2.8
A lot of (especially EU) webmasters have their own very long custom privacy policy.
Unfortunately XF 2.2 adds a (short) CATCHA paragraph without consent of webmaster to the end of the privacy policy:
Thats a nice addition for some of us, but there should be an option to disable this addition, in case it was already integrated into the custom privacy policy text.
At the moment this is only possible via template (or I assume phrase-) modifications.
Unfortunately XF 2.2 adds a (short) CATCHA paragraph without consent of webmaster to the end of the privacy policy:
HTML:
{{ phrase('privacy_policy_text', {'board_title': $xf.options.boardTitle, 'contactUrl': $xf.contactUrl, 'cookieHelp': link('help/cookies')}) }}
<!--[XF:captcha_after_policy_text]-->
<xf:if is="$captcha">
<xf:if contentcheck="true">
<h2>{{ phrase('captcha_privacy_policy') }}</h2>
<xf:contentcheck>{$captcha.getPrivacyPolicy()}</xf:contentcheck>
</xf:if>
</xf:if>
<!--[XF:captcha_after_captcha]-->
Thats a nice addition for some of us, but there should be an option to disable this addition, in case it was already integrated into the custom privacy policy text.
At the moment this is only possible via template (or I assume phrase-) modifications.