Home › Forums › Support › Add Text after Woocommerce Price This topic has 3 replies, 2 voices, and was last updated 3 years, 11 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts April 6, 2019 at 3:57 am #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.2GP Premium 1.7.8 April 6, 2019 at 4:49 am #861221 DavidStaff 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' ); Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ April 6, 2019 at 5:18 am #861242 Leon Thank you David for the quick support! April 6, 2019 at 5:24 am #861245 DavidStaff Customer Support You’re welcome Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In