Hi Team,
I have two questions for your nice magazine element:
– If it possible to open the links (to posts) automatic in an new tab?
– how can I change the icon in front of any post (pencil)?
Thank you and best regards
Mike
Hey Mike,
1- Please add following code to Functions.php file in Appearance > Editor
function av_mag_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('.av-magazine-entry a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'av_mag_attr');
2- Please refer to this post – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
Best regards,
Yigit
Hi Yigit,
works fine, thank you!
Best regards
Mike