function my_theme_cart_button_text() {
return 'Запросить стоимость';
}
function nulled_price_call ($product) {
if ($product -> get_price_html() == 0) {
add_filter( 'woocommerce_product_single_add_to_cart_text', 'my_theme_cart_button_text' );
}
}
nulled_price_call();