Hi there enfold team,
Is there any possibility to change the twitter widget in the footer area?
I want to open the twitter link in a new window instead of opening it in the same window.
Thanks for help!
Hey StudioLiner!
Please add following code to Functions.php in Appearance > Editor
function add_custom_twitter_target(){
?>
<script>
jQuery(window).ready(function(){
jQuery('.avia_socialcount a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_twitter_target');
Cheers!
Yigit