hi, i am trying to make some h3 headers into links on one of the pages on my site. the link works, but it won’t open in a new window.
Hey rotaryerin,
Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your element and give it a custom CSS class and add following code to Functions.php file in Appearance > Editor
function avia_custom_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('.your-custom-class a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'avia_custom_target');
Best regards,
Yigit
Thank you. On normal links, when I check “open in a new window”, that isn’t working, either.