wpcs_price_html_tail
Use 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>";
});
Use 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>";
});