I'm going to add portfolio to my site of all the websites I have built. But I'd like the portfolio Thumbnails to open an external URL in a new Tab/ Window.
I found some JS code in your support articles you gave to a user in Oct 2018, but this is not working. I suspect because there have been a few updates since then.
I am using Salient 12. Please let me know if you can help.
I'm going to add portfolio to my site of all the websites I have built. But I'd like the portfolio Thumbnails to open an external URL in a new Tab/ Window.
I found some JS code in your support articles you gave to a user in Oct 2018, but this is not working. I suspect because there have been a few updates since then.
I am using Salient 12. Please let me know if you can help.
Regards,
Muenda
Hello Muenda,
Please try the following code.
<script type="text/javascript"> jQuery( document ).ready(function() { jQuery('.nectar-post-grid-item a').attr('target', '_blank'); }); </script>Let me know if this works for you.
Cheers
Perfect!! Thank you
Hi, Is there also a way to get the post thumbnails to link to an external link in a new tab or window?
Hi there,
Please try the following code.
<script type="text/javascript"> jQuery( document ).ready(function() { jQuery('.nectar-post-grid .nectar-post-grid-link').attr('target', '_blank'); }); </script>Let me know if this works for you.
Thanks.