Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1093160

    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

    #1093627

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.