Home › Forums › WoodMart support forum › How to Change Price tag to Custom Text ? How to Change Price tag to Custom Text ? This topic has 1 reply, 2 voices, and was last updated 5 months ago by Aizaz Imtiaz Awan. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts June 26, 2024 at 11:11 am #575576 wanujaParticipant I have added prices for all of products. but prices are changing daily, so How can I add “Discount Available” (custom text) instead of Price tag? Thank you. June 26, 2024 at 3:14 pm #575672 Aizaz Imtiaz AwanKeymaster Hello, Add the code below to the functions.php file in your child theme: add_filter('woocommerce_get_price_html', 'custom_price_message'); function custom_price_message($price) { return '<span class="custom-price">Discount Available</span>'; } Best Regards. Author Posts Tagged: WoodMart Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register