Mở file functions.php trong child theme của bạn (nếu chưa có child theme, bạn nên tạo child theme để tránh mất thay đổi khi update theme). Thêm đoạn code sau:
/*thêm chữ "Giá: " vào trước giá sản phẩm trên trang sản phẩm và giỏ hàng*/
add_filter( 'woocommerce_get_price_html', 'webdy_change_product_price_display' );
add_filter( 'woocommerce_cart_item_price', 'webdy_change_product_price_display' );
function webdy_change_product_price_display( $price ) {
$text = __('Giá: ');
return $text . ' ' . $price;
}
Chào ! Bạn thấy nội dung này thế nào?





