wpcs_price_html_tailUse this hook if you want to add any additional information text after the price string. add_filter('wpcs_price_html_tail', function($price_html) { return $price_html . "<strong>Hello World!</strong>"; });1234add_filter('wpcs_price_html_tail', function($price_html){ return $price_html . "<strong>Hello World!</strong>";});