Is there a way to allow the link to open up in a new tab vs opening it in the same webpage?
On bottom, first column after contact information.
Hey Devon!
Please add following code to Functions.php file in Appearance > Editor
function avia_custom_element_id(){
?>
<script>
jQuery(window).load(function(){
jQuery('.avia_socialcount a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'avia_custom_element_id');
Regards,
Yigit
Hi – can you be a bit more specific to where I should put it? Before and/or after which section?
Awesome! Thanks and it works!