Hi
ON this page:
how can I open the reviews in a new window? I only want these images to do that, not on any other page
thanks
Hey smoothbob!
Please add following code to Functions.php file in Appearance > Editor
function remove_title_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery('#reviews a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'remove_title_attr');
Best regards,
Yigit
great thanks!