Display From $XX.XX
-
Is there a function to display From $XX.XX rather than a price range for the wholesale price?
Currently I have my Woocommerce store set to display From price rather than a price range using the below code.
/* Edit WooCommerce Variable Product Price Range $$$-$$$ – Print “From: $$” Instead */
add_filter( ‘woocommerce_variable_price_html’, ‘bbloomer_variation_price_format’, 10, 2 );function bbloomer_variation_price_format( $price, $product ) {
// 1. Get min/max regular and sale variation prices
$min_var_reg_price = $product->get_variation_regular_price( ‘min’, true );
$min_var_sale_price = $product->get_variation_sale_price( ‘min’, true );
$max_var_reg_price = $product->get_variation_regular_price( ‘max’, true );
$max_var_sale_price = $product->get_variation_sale_price( ‘max’, true );// 2. New $price, unless all variations have exact same prices
if ( ! ( $min_var_reg_price == $max_var_reg_price && $min_var_sale_price == $max_var_sale_price ) ) {
if ( $min_var_sale_price < $min_var_reg_price ) {
$price = sprintf( __( ‘From:%1$s%2$s‘, ‘woocommerce’ ), wc_price( $min_var_reg_price ), wc_price( $min_var_sale_price ) );
} else {
$price = sprintf( __( ‘From: %1$s’, ‘woocommerce’ ), wc_price( $min_var_reg_price ) );
}
}// 3. Return $price
return $price;
}The page I need help with: [log in to see the link]
The topic ‘Display From $XX.XX’ is closed to new replies.