Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #699043

    Hi

    ON this page:

    how can I open the reviews in a new window? I only want these images to do that, not on any other page

    thanks

    #700331

    Hey smoothbob!

    Please add following code to Functions.php file in Appearance > Editor

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('#reviews a').attr('target','_blank');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    Best regards,
    Yigit

    #700590

    great thanks!

    #700627

    Hi,

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Open gallery links in New Window’ is closed to new replies.