[WOOCOMERCE] Thay đổi ký tự gạch ngang trong giá biến thể và loại bỏ ký tự $ đằng sau (ok)



add_filter('woocommerce_format_price_range', 'ss_format_price_range', 100, 3);
function ss_format_price_range( $price, $regular_price, $sale_price ) {
$prices = str_replace("–","~",$price);
return $prices;
}
Hoàn hảo
C:\xampp\htdocs\jp1\wp-content\themes\muum-child\functions.php
add_filter('woocommerce_format_price_range', 'ss_format_price_range', 100, 3);
function ss_format_price_range( $price, $regular_price, $sale_price ) {
$price = '<span class="pricevariable">#'.number_format($regular_price).' 〜 #'.number_format($sale_price).'</span>';
return $price;
}

PreviousChange Product Tab Titles and Headings (ok)Next[WOOCOMERCE] all hook at woocommerce_before_checkout_form (ok)
Last updated
Was this helpful?