• Resolved alecsys

    (@alecsys)


    Hello. I need to edit the text on consent checkbox (under comment form form) and also the text on Policy Tools page. How can I do that? I have minimal programing skills.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,
    To edit the text on consent checkbox You need to add a hook to WordPress current working theme.
    The hook will be this :
    add_filter( ‘gdpr-framework-consent-policy’, ‘gdprfPrivacyPolicychangeconsenttext’,20 );
    function gdprfPrivacyPolicychangeconsenttext(){
    return ‘
    {You Text Here}’;
    }

    Note : Need to replace *{You Text Here}
    * with your text which need to be add there.

Viewing 1 replies (of 1 total)
  • The topic ‘Custom texts on comments and policy tools page’ is closed to new replies.