This topic has 4 replies, 3 voices, and was last updated 5 years, 3 months ago ago by Olga Barlow
How can I show the base product price instead of a range:
Hello,
Read this topic https://www.8theme.com/topic/product-variations-price-display/ If this is not what you are looking for, contact the support of woocommerce to get advice, because the additional customization is outside the scope of our support.
Regards
I was looking for the reverse of this but I found this code to place in functions.php which worked:
function wc_varb_price_range( $wcv_price, $product ) {
$prefix = sprintf('%s: ', __('From', 'wcvp_range'));
$wcv_reg_min_price = $product->get_variation_regular_price( 'min', true );
$wcv_min_sale_price = $product->get_variation_sale_price( 'min', true );
$wcv_max_price = $product->get_variation_price( 'max', true );
$wcv_min_price = $product->get_variation_price( 'min', true );
$wcv_price = ( $wcv_min_sale_price == $wcv_reg_min_price ) ?
wc_price( $wcv_reg_min_price ) :
'<del>' . wc_price( $wcv_reg_min_price ) . '</del>' . '<ins>' . wc_price( $wcv_min_sale_price ) . '</ins>';
return ( $wcv_min_price == $wcv_max_price ) ?
$wcv_price :
sprintf('%s%s', $prefix, $wcv_price);
}
add_filter( 'woocommerce_variable_sale_price_html', 'wc_varb_price_range', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'wc_varb_price_range', 10, 2 );
Hello,
We are glad to hear that you sorted out.
Regards
You must be logged in to reply to this topic.Log in/Sign up