add_filter('woocommerce_product_add_to_cart_text', function($text, $product){
if($product->is_type('variable')){
return '商品を見る';
}
return $text;
}, 10, 2);