This topic has 2 replies, 1 voice, and was last updated 1 years, 3 months ago ago by ljimenez
Any chance to add the word Price: before the real price in product page?
https://prnt.sc/IiO43q7pOMgF before this
done, just added this
add_filter( ‘woocommerce_get_price_html’, ‘njengah_text_before_price’ );
function njengah_text_before_price($price){
$text_to_add_before_price = ‘ Price: ‘; //change text in bracket to your preferred text
return $text_to_add_before_price . $price ;
}
The issue related to '‘how to add text before price in product page?’' has been successfully resolved, and the topic is now closed for further responses