/**
* WooCommerce Extra Feature
* --------------------------
*
* Replace "Free!" by a custom string
*
*/
function woo_my_custom_free_message() {
return "Liên hệ để lấy giá";
}
add_filter('woocommerce_free_price_html', 'woo_my_custom_free_message');
|
Để sửa chữ free kia thành chữ liên hệ để lấy giá, ta làm như sau:
B1: vào mục Appearence
B2: vào Editor
B3: chọn Functions.php của theme mình đang dùng
B4 : chèn đoạn code phía dưới vào, và save lại.