Greetings,
I am using Enfold on my website: http://farumkyokushin.dk/
I have added the Special: Email Icon to the extra header, but it opens the link in the same window/tab. Is there any way to have it open as target=”_blank”?
Thanks.
Hey mp3dk!
Try adding this to the bottom of your functions.php file.
add_filter( 'wp_footer', 'enfold_customization_email_target_blank' );
function enfold_customization_prevent_enter_submit() {
?>
<script type = "text/javascript">
jQuery(document).ready(function() {
jQuery('.av-social-link-mail a').attr('target', '_blank');
});
</script>
<?php
}
Regards,
Elliott
Sorry for the late reply. I can report that the code snippet doesn’t work.