[Support request] Add Text after Woocommerce Price

Home Forums Support [Support request] Add Text after Woocommerce Price

Home Forums Support Add Text after Woocommerce Price

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #861191
    Leon

    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

    GeneratePress 2.2.2
    GP Premium 1.7.8
    #861221
    David
    Staff
    Customer Support

    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' );
    #861242
    Leon

    Thank you David for the quick support!

    #861245
    David
    Staff
    Customer Support
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.