Change a specific text in Woocommerce cart page Post author:Best-IT Scholars Post published:December 11, 2021 Post category:Slice of Code / WordPress Post comments:0 Comments add_filter('gettext', 'change_price_text_in_cart_page', 105, 3 ); function change_price_text_in_cart_page( $translated, $text, $domain ) { if( is_cart() && $text == 'Price' ) { $translated = __('Value', $domain ); } return $translated; } Click here to see in Stackoverflow Opens in a new window Twitter Opens in a new window Facebook Opens in a new window Google+ Opens in a new window Pinterest Opens in a new window LinkedIn You Might Also Like WooCommerce Food – Restaurant Menu & Food Ordering November 1, 2021 How to change woocommerce sort by text in shop page August 19, 2022 Leave a Reply Cancel replyYou must be logged in to post a comment.Login with your Social ID