Yo lo hice con este código
remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );
add_action( 'woocommerce_before_shop_loop_item', 'tsa_woocommerce_link_nofollow', 10 );
function tsa_woocommerce_link_nofollow() {
global $product;
if ( $product->is_type('external') ) {
echo '<a target="_blank" rel="nofollow" class="woocommerce-LoopProduct-link" href="' . $product->get_product_url() . '">';
}else{
echo '<a href="' . get_the_permalink() . '" class="woocommerce-LoopProduct-link">';
}
Puedes descargar un plugin que se llama code snippets y lo pones ahí