Tagged: Upcoming events
Hi!
Is it possible to open the events in new tabs? The ones in the “Upcoming events” plugin.
Thank you!
Hey C-LabMX!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_event_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('a.av-upcoming-event-entry').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_event_target');
Regards,
Yigit
Hi Yigit!
Thanks a lot for the quick response! It didn’t work at first, but I only remove the letter ‘a’ before ‘av-upcoming’ in this line, and works great.
jQuery('a.av-upcoming-event-entry').attr('target','_blank');
Thanks again!