Để sử dụng bạn copy đoạn code sau vào file functions.php trong thư mục theme bạn đang sử dụng nhé!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// Thêm chữ vào trước giá add_filter( 'woocommerce_get_price_html', 'tcwp_add_price_prefix', 99, 2 ); function tcwp_add_price_prefix( $price, $product ){ $price = 'Giá: ' . $price; return $price; } // Thêm chữ vào sau giá add_filter( 'woocommerce_get_price_html', 'tcwp_price_prefix_suffix', 99, 2 ); function tcwp_price_prefix_suffix( $price, $product ){ { $price = $price . '(Có giá cho Dev)'; } return apply_filters( 'woocommerce_get_price', $price ); } |
Chúc các bạn thành công !