Skip to content

Instantly share code, notes, and snippets.

View huynhjabao1997's full-sized avatar
💭
Make it simple :)

Alexander Huỳnh huynhjabao1997

💭
Make it simple :)
View GitHub Profile
// Price 0 -> Liên hệ
function devvn_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, __( 'Free!', 'woocommerce' ) );
} else {
$price = '<span class="amount" style="color: red">' . __( 'Liên hệ', 'woocommerce' ) . '</span>';
}