Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
To do this, just add to your theme's functions.php file:
/* Open Products in New Tab Woocommerce-DevelopingSense */
remove_action( 'woocommerce_before_shop_loop_item','woocommerce_template_loop_product_link_open', 10 );
// add a hook to my custom function
add_action ( 'woocommerce_before_shop_loop_item', 'ami_function_open_new_tab', 10 );
function ami_function_open_new_tab() {
echo '<a target="_blank" href="' . get_the_permalink() . '" class="woocommerce-LoopProduct-link">';
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question