Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
You can use the woocommerce_get_price_html filter for this.
Something like this: (the code should be placed in the functions.php file of your theme, and preferably a child theme).
add_filter( 'woocommerce_get_price_html', 'fink_add_label_to_price', 10, 2 );
function fink_add_label_to_price( $price, $product ) {
$price = $price.' /шт.';
return $price;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question