Created
November 26, 2020 17:44
-
-
Save TANVIRFAZLEY/45f7d27b1e9e7d6ad416ff99353c9de0 to your computer and use it in GitHub Desktop.
Display WooCommerce minimum variable product price only
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
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 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment