Site logo

Archived topic

Add Text after Woocommerce Price

3 replies · Started by Leon on April 6, 2019

Viewing posts 1–4 of 4

Hi Tom,

Was googling with no luck. Do you know if there is a way to add a "Suffix" to the product price in woocommerce please?

Say now the price says: $100, I need to display like: $100 per day.

Thank you
Leon

Hi there,

you can use a simple function like this:

function woo_text_after_price( $price ) {
    $price .= ' per day';
    return $price;
}
add_filter( 'woocommerce_get_price_html', 'woo_text_after_price' );
add_filter( 'woocommerce_cart_item_price', 'woo_text_after_price' );

Thank you David for the quick support!

You're welcome

This archived topic is closed to new replies.