How to make "posts" open in a new window?

Hi,
I’d like to be able to make posts on a page open up into a new window. How would I do that. I can’t figure out an “out of the box” way to do it.

Here’s the page: https://www.sadowsky.com/product-category/recently-sold-instruments/

I’d like customers to be able to click on an instrument and have it open in a new page so that they don’t have to start over again on our huge list of sold instruments.

Any tips>

thanks,
JR

Hello,

if u don’t have option on linik to open in new tab, u will have to edit manually php.

woocommerce grid section in beaver builder plugin it seems.

OR

Jquery, something like : (i did’nt see any class or id on link “a”
Then it will be link, by link, it’s horrible

    $(document).ready(function(){

      $('a[href=https://www.google.com]').click(function(){
        window.open(this.href);
        return false;
      });
    });
 
Regards

Thanks for this! I’ll have to see if I can do it… we have so many it would be painful to do it link by link.

(function($) {
    $(document).ready(function() {
        $('.fl-post-module-woo-button a').each(function() {
            $(this).attr('target', '_blank')
        })
    })
})(jQuery);

@pross
Exacly what he need. Perfect.

Best regards