במוצרים עם מחירים שונים בוריאציות תוכלו לשנות את טווח המחיר ולהציג את המחיר עם תוספת טקסט, (לדוגמא: מ – מ – ₪140 עד – 189)
PHP
add_filter( 'woocommerce_get_price_html', 'ecommercehints_change_variable_price_range_display', 10, 2 );
function ecommercehints_change_variable_price_range_display( $price, $product ) {
if( ! $product->is_type('variable') ) return $price;
$prices = $product->get_variation_prices( true );
if ( empty( $prices['price'] ) )
return apply_filters( 'woocommerce_variable_empty_price_html', '', $product );
$min_price = current( $prices['price'] );
$max_price = end( $prices['price'] );
return apply_filters( 'woocommerce_variable_price_html', 'מ - ' . wc_price( $min_price ) . $product->get_price_suffix() . " עד - " . $max_price, $product );
}