Hi,
Currently an advertising widget ove a link in another window.
How to get a link on the same window with “Enfold child Averitsing Area” (or cancel the target = “_ blank”)?
Thank you.
Hi bicounet!
Thank you for using Enfold.
You can add this on functions.php:
/**
* Remove target attribute
*/
add_filter('wp_footer', 'avf_remove_target', 10);
function avf_remove_target() { ?>
<script>
(function($){
$(window).load(function() {
$( ".avia_partner_widget a" ).each(function() {
$(this).removeAttr('target');
});
});
})(jQuery);
</script>
<?php
}
Remove browser cache then reload the page.
Cheers!
Ismael