Product Image Thumbnail to External Link in New Tab
-
Hi there
Is there a way to have the following code for my product images/thumbnails link to a new tab?
add_action( ‘template_redirect’, ‘redirect_external_products’ );
function redirect_external_products() {
global $post;
if ( is_singular( ‘product’ ) && ! empty( $post ) && ( $product = wc_get_product( $post ) ) && $product->is_type( ‘external’ ) ) {
wp_redirect( $product->get_product_url() );
exit;need it to work like https://www.shopstyle.com/browse/backpacks
Currently it opens external link in same tab want the code to open link in external tab
Any help is much appreciated.
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Product Image Thumbnail to External Link in New Tab’ is closed to new replies.