Customize how prices are displayed on your product pages using this filter. Tailor the format to match your site’s branding.
add_filter('woocommerce_get_price_html', 'custom_price_html', 10, 2);
function custom_price_html($price, $product) {
return $price . ' <span class="custom-text">Inclusive of tax</span>'; // Modify price display
}