Tagged: hotspots
Hi!
Is it possible to open the links in hotspots in new tabs?
Thank you!
Hey C-LabMX!
Try adding this to the bottom of your /enfold/functions.php file.
add_action( 'wp_footer', 'enfold_customization_hotspot_newtab' );
function enfold_customization_hotspot_newtab() {
?>
<script type = "text/javascript">
jQuery(document).ready(function(){
jQuery('.av-image-hotspot_inner').attr( 'target', '_blank' );
});
</script>
<?php
}
Best regards,
Elliott
Thanks a lot Elliott!