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.
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