Hello, is it possible to open the ‘Link to the Persons website’ in a testimonial on the same page instead of a new page?
Hi EricSmeets!
Please add following code to Functions.php file in Appearance > Editor
function remove_target_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('a.avia-testimonial-link').removeAttr('target');
});
</script>
<?php
}
add_action('wp_footer', 'remove_target_attr');
Regards,
Yigit