Hide price range
-
hide price range in wholesale price
I need only display one price (cash price).Similar To:
add_filter( ‘woocommerce_variable_sale_price_html’, ‘eliminar_rango’, 10, 2 );
add_filter( ‘woocommerce_variable_price_html’, ‘eliminar_rango’, 10, 2 );function eliminar_rango( $price, $product ) {
// Main Price
$prices = array( $product->get_variation_price( ‘min’, true ), $product->get_variation_price( ‘max’, true ) );$price = $prices[0] !== $prices[1] ? sprintf( __( ‘Contado: %1$s’, ‘woocommerce’ ), wc_price( $prices[1] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( ‘min’, true ), $product->get_variation_regular_price( ‘max’, true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( ‘Contado: %1$s’, ‘woocommerce’ ), wc_price( $prices[1] ) ) : wc_price( $prices[0] );if ( $price !== $saleprice ) {
$price = ‘‘ . $saleprice . $product->get_price_suffix() . ‘‘ . $price . $product->get_price_suffix() . ‘‘;
}
return $price;
}
- The topic ‘Hide price range’ is closed to new replies.