Home › Forums › WoodMart support forum › From price for variation product › Reply To: From price for variation product
May 7, 2024 at 4:05 pm
#563867
thomas-8605
Participant
General note:
we adding the word “ab” (english “from”) to product detailpage via a snippet.
// Ab vor dem Variantenpreis einfügen. Quelle: GermanMarket Support.
add_filter( ‘woocommerce_variable_price_html’, function( $price_string, $variable_product ){
if ( $variable_product->get_variation_price( ‘min’ ) != $variable_product->get_variation_price( ‘max’ ) ) {
$price_string = ‘ab ‘ . wc_price( $variable_product->get_variation_price( ‘min’ ) ) . $variable_product->get_price_suffix();
}
return $price_string;
}, 10, 2 );
If this is wrong:
please tell me correct solution that will work with woodmart.