• Resolved bobby4711

    (@bobby4711)


    Hi developers,

    great plugin!

    I have one feature request. Perhaps you can add the rel=”nofollow” parameter to the %privacy_policy% code to be used. or add a checkbox option to give users the freedom to decide if a NOFOLLOW should be set or not.

    That’s what usually is best to sue for website internal links to the data privacy page.

    Thanks
    Georg

Viewing 1 replies (of 1 total)
  • Thank you for the kind words.

    You’re able to overwrite the output by using a WordPress hook:

    function overwrite_privacy_policy_link($link, $url, $label) {
        // Do something here.
        return $link;
    }
    add_filter('wpgdprc_privacy_policy_link', 'overwrite_privacy_policy_link', 10, 3);

    Let me know if you need any further assistance.

Viewing 1 replies (of 1 total)
  • The topic ‘Feature Request: NOFOLLOW parameter for the %privacy_policy%’ is closed to new replies.