Chỉnh sửa fields trong trang checkout của Woocommerce
![[Share Code] Chỉnh sửa fields trong trang checkout của Woocommerce 2 checkout cua woocommerce 1 - ThemeVareno.com](https://themevareno.com/wp-content/uploads/2025/12/checkout-cua-woocommerce-1.jpg)
![[Share Code] Chỉnh sửa fields trong trang checkout của Woocommerce 3 checkout cua woocommerce 2 - ThemeVareno.com](https://themevareno.com/wp-content/uploads/2025/12/checkout-cua-woocommerce-2.jpg)
Để xóa field ta thêm đoạn code sau vào file functions.php của theme bạn đang sử dụng hoặc child theme
add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );
function custom_override_checkout_fields( $fields ) {
unset($fields['billing']['billing_postcode']);
unset($fields['billing']['billing_address_2']);
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_city']);
unset($fields['billing']['billing_country']);
unset($fields['billing']['billing_last_name']);
unset($fields['billing']['billing_state']);
return $fields;
}
Dưới đây là list toàn bộ các thông số chúng ta cần biết:
- billing
- billing_first_name
- billing_last_name
- billing_company
- billing_address_1
- billing_address_2
- billing_city
- billing_postcode
- billing_country
- billing_state
- billing_email
- billing_phone
- shipping
- shipping_first_name
- shipping_last_name
- shipping_company
- shipping_address_1
- shipping_address_2
- shipping_city
- shipping_postcode
- shipping_country
- shipping_state
- account
- account_username
- account_password
- account_password-2
- order
- order_comments
Xem thêm:
- Những Yếu Tố Cần Thiết Để Có Bài Viết Chuẩn SEO Google
- Top 10+ Công Cụ Hỗ Trợ Viết Content Chuẩn SEO Bằng AI Cho Website
- Thiết Kế Website Bán Hàng WordPress Chuyên Nghiệp
- [Share Code] Tự động tạo tài khoản cho khách hàng và gửi thông báo sau khi hoàn tất đơn hàng trong WooCommerce WordPress
- [SEO] Khắc phục lỗi Google không index tốt với các sản phẩm không có giá trong Woocomerce
![[SEO] Khắc phục lỗi Google không index tốt với các sản phẩm không có giá trong Woocomerce 4 seo price woocomerce 1 - ThemeVareno.com](https://themevareno.com/wp-content/uploads/2025/12/seo-price-woocomerce-1.jpg)
![[Share Code] Chia sẻ code ẩn hiện text với hiệu ứng hover mượt mà trong website Wordpress 5 an hien text 2 - ThemeVareno.com](https://themevareno.com/wp-content/uploads/2025/12/an-hien-text-2.jpg)
![[Share Code] Chia sẻ code xóa các hình không sử dụng trong website WordPress 6 Remove Default WordPress Image Sizes - ThemeVareno.com](https://themevareno.com/wp-content/uploads/2025/12/Remove-Default-WordPress-Image-Sizes.png)
![[Share Code] Chuyển 0đ thành chữ “Liên hệ” trong Woocommerce Wordpress 7 woocomerce plugin - ThemeVareno.com](https://themevareno.com/wp-content/uploads/2025/12/woocomerce-plugin.png)
