Hi @vannimakk,
The cookie banner ‘read more’ link will direct to the page selected in the wizard, under General -> documents. You can select to generate a Cookie Policy, or direct to a different page.
As it is a legal requirement to place a link to a Cookie Policy on the Cookie Banner, the plugin directs to the Complianz generated Policy, if you enabled the document. If you want to generate the Complianz Cookie Policy, but still want to change the link on the banner, please use this filter and add it to your site as a MU-plugin:
/**
* @param array $output
* @return array $output
*/
function cmplz_edit_cookie_settings($output){
$output['readmore_url']['eu'] = "https://yoursite.com/xxxx/";
return $output;
}
add_filter('cmplz_cookie_settings', 'cmplz_edit_cookie_settings’);
For more information about the filter, please refer to this article:
https://complianz.io/changing-the-read-more-url-on-the-cookie-banner/
For more information and instructions on MU-plugins, please read:
https://complianz.io/adding-filters-with-mu-plugins-quick-easy/
If you have configured Complianz for the US this won’t be necessary, as the US banner contains a link to the Privacy Statement by default.
Please let me know if you need further assistance.
Kind regards,
Leon