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

    Any way to edit the Magazine element so that it follows when a post is formatted as a link?

    I’d like external links to automatically open in a new window when the post is setup as a link.

    Thanks.

    #566386

    Hey Pointbreakd!

    Are you trying to have the magazine links open up in a new tab? If so then add this to the bottom of your functions.php file.

    add_action( 'wp_footer', 'enfold_customization_magazine' );
    function enfold_customization_magazine(){
    ?>
    <script type = "text/javascript">
    jQuery(document).ready(function(){
    jQuery('.av-magazine-entry a').attr('target', '_blank');
    });
    </script>
    <?php
    }

    Regards,
    Elliott

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