Bu kodu temanızın functions.php dosyasına veya eklenti olarak Code Snippets kullanarak ekleyebilirsiniz.
add_filter( 'woocommerce_get_price_html', 'custom_price_message' );
function custom_price_message( $price ) {
$new_price = $price . ' <span class="custom-price-prefix">' . __('(KDV Dahil)').'</span>';
return $new_price;
}
Henüz Yorum yok!