Last active
September 25, 2024 14:14
-
-
Save corsonr/7215762 to your computer and use it in GitHub Desktop.
WooCommerce: Hide Checkout Fields For Virtual Products
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'woocommerce_checkout_fields' , 'woo_remove_billing_checkout_fields' ); | |
/** | |
* Remove unwanted checkout fields | |
* | |
* @return $fields array | |
*/ | |
function woo_remove_billing_checkout_fields( $fields ) { | |
if( woo_cart_has_virtual_product() == true ) { | |
unset($fields['billing']['billing_company']); | |
unset($fields['billing']['billing_address_1']); | |
unset($fields['billing']['billing_address_2']); | |
unset($fields['billing']['billing_city']); | |
unset($fields['billing']['billing_postcode']); | |
unset($fields['billing']['billing_country']); | |
unset($fields['billing']['billing_state']); | |
unset($fields['billing']['billing_phone']); | |
unset($fields['order']['order_comments']); | |
unset($fields['billing']['billing_address_2']); | |
unset($fields['billing']['billing_postcode']); | |
unset($fields['billing']['billing_company']); | |
unset($fields['billing']['billing_city']); | |
} | |
return $fields; | |
} | |
/** | |
* Check if the cart contains virtual product | |
* | |
* @return bool | |
*/ | |
function woo_cart_has_virtual_product() { | |
global $woocommerce; | |
// By default, no virtual product | |
$has_virtual_products = false; | |
// Default virtual products number | |
$virtual_products = 0; | |
// Get all products in cart | |
$products = $woocommerce->cart->get_cart(); | |
// Loop through cart products | |
foreach( $products as $product ) { | |
// Get product ID and '_virtual' post meta | |
$product_id = $product['product_id']; | |
$is_virtual = get_post_meta( $product_id, '_virtual', true ); | |
// Update $has_virtual_product if product is virtual | |
if( $is_virtual == 'yes' ) | |
$virtual_products += 1; | |
} | |
if( count($products) == $virtual_products ) | |
$has_virtual_products = true; | |
return $has_virtual_products; | |
} |
I'm not sure if it a new function, but why not use the is_virtual()
function for the WC_Product_Simple Object ? For instance if you look at https://gist.github.com/mattpramschufer/957039753ea7a0bc3344e2f817304156 I simply have
function woo_cart_has_virtual_product() {
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
if($cart_item['data']->is_virtual()){
return true;
}
}
return false;
}
mattpramschufer your code works, but I made some improvements for case if we have both product types in a cart
function woo_cart_has_virtual_product() {
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
return $cart_item['data']->is_virtual() ? true : false;
}
return false;
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have LearnDash installed, and it comes with a new "Course" option in the Product Data / Product Type section:
(as seen in this screenshot)
https://d3vv6lp55qjaqc.cloudfront.net/items/2o3R2P0h1V1E2O0e303T/Screen%20Shot%202017-11-21%20at%202.39.16%20PM.png
When I select Course as the product type, the ability for me to check the "Virtual" checkbox disappears.
Since the Course is technically a product that doesn't need to be shipped, how would I make hide the fields in the same way it does with virtual products? I want to hide the shipping fields and such the same way it would if I had selected "Virtual", as seen here:
https://d3vv6lp55qjaqc.cloudfront.net/items/3P2d0Y250w0K3T3b142Y/Screen%20Shot%202017-11-21%20at%202.46.27%20PM.png