Adding prefix/suffix to price in WooCommerce

function change_product_price_html($price){
  	
    $newPrice 	 = "Text Before Price";
  	$newPrice 	.= $price;
  	$newPrice	.= "Text After Price";
  
    return $newPrice;
}
  
add_filter('woocommerce_get_price_html', 'change_product_price_html');

 

In case of any complain or © copyright or issues please check disclaimer page for faster resolutions.