Hi
When I click to the portfolio grid entry title, it will access to the portfolio page in the same window, could I revise to open it in a new window?
Hey Enffie,
Try adding the functions.php file
function add_custom_port_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('h3.grid-entry-title.entry-title a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_port_target');
Let me know if this works for you.
Best regards,
Jordan Shannon
Yes, It works fine. Thank you Jordan.
Hi!
Happy we can help.
Please feel free to let us know if there is anything else we can do for you.
Cheers!
Basilis