Hi,
Just a simple question really. When I have the Cookie Consent Message enabled, at the moment when you click on the Learn More button it opens in the same window taking you away from the site, is there a quick fix to make it open in a new window (target_blank)?
Kind regards,
Mark
Hey markransome,
Thank you for using Enfold.
Add this script in the functions.php file to apply the target attribute to the consent buttons.
add_action('wp_footer', 'ava_consent_button_target', 9999);
function ava_consent_button_target() {
?>
<script>
(function($) {
$('.avia-cookie-consent-button').attr('target', '_blank');
})(jQuery);
</script>
<?php
}
Best regards,
Ismael