Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save braddalton/76fc29014e32295e9452c8b83d145dbf to your computer and use it in GitHub Desktop.
Save braddalton/76fc29014e32295e9452c8b83d145dbf to your computer and use it in GitHub Desktop.
Open Product Image and Title in New Window WooCommerce
$(document).ready(function(){
$('a.woocommerce-product-gallery__trigger').click(function(){
window.open(this.href);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment