Как изменить WooCommerce Подробнее текст

add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) {
    if ( 'Read more' == $text ) {
        $text = __( 'View More', 'woocommerce' );
    }

    return $text;
} );
Hamza Najam