Đoạn code Woocommerce chuyển giá 0đ hoặc để trống thành Liên hệ, số điện thoại tùy ý bạn, bạn muốn thay thành gì cũng được, code sẽ được thêm vào function.php
Nếu bạn không xài child theme thì paste code vào function.php của theme đó luôn.
Nếu bạn xài flatsome-child thì vào đó và thêm code vào function.php:
function chowordpress_wc_custom_get_price_html( $price, $product ) { if ( $product->get_price() == 0 ) { if ( $product->is_on_sale() && $product->get_regular_price() ) { $regular_price = wc_get_price_to_display( $product, array( 'qty' => 1, 'price' => $product->get_regular_price() ) ); $price = wc_format_price_range( $regular_price, __( 'Liên hệ', 'woocommerce' ) ); } else { $price = '<span class="amount">' . __( 'Liên hệ', 'woocommerce' ) . '</span>'; } } return $price; } add_filter( 'woocommerce_get_price_html', 'chowordpress_wc_custom_get_price_html', 10, 2 );
Chuyển giá thành Liên hệ khi hết hàng trong woocommerce
Đoạn code này sẽ giúp bạn hiển thị giá thành chữ Liên hệ khi set sản phẩm đó là hết hàng. Bạn chỉ cần thêm đoạn code sau vào functions.php của theme đang active là được, như theme flatsome-child đó.
function chowordpress_oft_custom_get_price_html( $price, $product ) { if ( !is_admin() && !$product->is_in_stock()) { $price = '<span class="amount">' . __( 'Liên hệ', 'woocommerce' ) . '</span>'; } return $price; } add_filter( 'woocommerce_get_price_html', 'chowordpress_oft_custom_get_price_html', 99, 2 );
Đoạn code Woocommerce chuyển giá trống hoặc không nhập giá thành Liên hệ, số điện thoại tùy ý bạn, bạn muốn thay thành gì cũng được, code sẽ được thêm vào function.php
Nếu bạn không xài child theme thì paste code vào function.php của theme đó luôn.
Chuyển giá trống thành Liên hệ trong woocommerce
Bạn dán code này vào file function.php của child theme nhé:
add_filter('woocommerce_empty_price_html', 'custom_call_for_price'); function custom_call_for_price() { return 'Liên hệ SĐT CỦA BẠN'; }
Thêm code chuyển giá thành liên hệ đó vào là chạy, nếu cần hỗ trợ thì inbox admin nhé.
Cảm ơn bạn!