Первым делом попытался это сделать.. Вот эта строчка выводит цену.убрать лишнюю цену
<meta itemprop="price" content="<?php $product->get_price(); ?>" />
add_filter( 'woocommerce_get_price_suffix', 'bbloomer_price_translatable_suffix', 99, 4 );
function bbloomer_price_translatable_suffix( $html, $product, $price, $qty ){
$html .= ' ' . __( 'От', 'bbloomer' ) . ' ' . wc_price( wc_get_price_excluding_tax( $product, array( 'qty' => $qty, 'price' => $price ) ) ) . ' ' . __( '', 'bbloomer' ) . '';
return $html;
}
Удалось решить?Первым делом попытался это сделать.. Вот эта строчка выводит цену.
Попробовал ее комментировать, пропадает старая и новая цена..((Код:<meta itemprop="price" content="<?php $product->get_price(); ?>" />
в файл function.php добавил
Код:add_filter( 'woocommerce_get_price_suffix', 'bbloomer_price_translatable_suffix', 99, 4 ); function bbloomer_price_translatable_suffix( $html, $product, $price, $qty ){ $html .= ' ' . __( 'От', 'bbloomer' ) . ' ' . wc_price( wc_get_price_excluding_tax( $product, array( 'qty' => $qty, 'price' => $price ) ) ) . ' ' . __( '', 'bbloomer' ) . ''; return $html; }
добавить в функцию условие
add_filter( 'woocommerce_get_price_html', 'wpa83367_price_html', 100, 2 );
function wpa83367_price_html( $price, $product ){
return __('Starting from £2.95','verdure-child');
//return 'Was:' . str_replace( '<ins>', ' Now:<ins>', $price );
}