L
L
lga912020-11-22 10:04:11
WordPress
lga91, 2020-11-22 10:04:11

Hello, how can I add /pcs and /m to the product price in woocommerce wordpress?

Plugin "Custom Price Labels for WooCommerce" solves this problem, but only in pro version. Are there other options?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Roman Fink, 2020-11-24
@RomanFink

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 question

Ask a Question

731 491 924 answers to any question