How do I modify the privacy notice?
-
How do I change the privacy policy comment under the comments box section? It doesn’t seem like you can edit it within the php file itself as that crashes it. Does it have to be added somewhere else?
referring to this section:
/** * Controls the display of a privacy related notice underneath the comment form using the <code>akismet_comment_form_privacy_notice</code> option and filter respectively. * Default is top not display the notice, leaving the choice to site admins, or integrators. */ public static function display_comment_form_privacy_notice() { if ( 'display' !== apply_filters( 'akismet_comment_form_privacy_notice', get_option( 'akismet_comment_form_privacy_notice', 'display' ) ) ) { return; } echo apply_filters( 'akismet_comment_form_privacy_notice_markup', '<p class="akismet_comment_form_privacy_notice">' . sprintf( __( ' This site uses Akismet to reduce spam. <a href="%s" target="_blank" rel="nofollow noopener">Learn how your comment data is processed</a>.', 'akismet' ), 'https://akismet.com/privacy/' ) . '</p>' ); } }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How do I modify the privacy notice?’ is closed to new replies.