CookieYes
https://wordpress.org/plugins/cookie-law-info/
If this plugin is adding an unstyled cookie bar to the bottom of your Link page, add the following code to your functions.php file in your theme:
add_action(
'social_link_pages_page_render',
function ($page_data) {
add_filter(
'cli_show_cookie_bar_only_on_selected_pages',
function ($html, $slug) {
return '';
},
10,
2
);
}
);