In this example, I will demonstrate how to hide the “billing phone” if “billing company” is empty or no information is entered. Of course, you also have to disable the mandatory attribute for the billing phone from the Customizer settings, otherwise checkout validation will fail. You can readapt this snippet to any other checkout field combo – just identify the input IDs and change jQuery accordingly. Enjoy!
In this example, we will see how to hide and keep hidden the Billing Phone entire field unless some content is entered inside Company name field
PHP Snippet: Toggle a Checkout Field Based on Whether Another Field is Empty
WooCommerce: Add Shipping Phone @ Checkout I’m surprised WooCommerce doesn’t offer this field out of the box. Most ecommerce websites actually require a shipping phone to...
Please let me know in the comments if everything went as expected. I would be happy to revise the snippet if you report otherwise (please provide screenshots). I have tested this code with Storefront theme, the WooCommerce version listed above and a WordPress-friendly hosting.
If you think this code saved you time & money, feel free to join 17,000+ WooCommerce Weekly subscribers for blog post updates and 250+ Business Bloomer supporters for 365 days of WooCommerce benefits. Thank you in advance!
Need Help with WooCommerce?
Check out these free video tutorials. You can learn how to customize WooCommerce without unnecessary plugins, how to properly configure the WooCommerce plugin settings and even how to master WooCommerce troubleshooting in case of a bug!
Rodolfo Melogli
Business Bloomer Founder
Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza.
How can we hide/show fields based on selected shipping method?
I’m trying to get it working with $(“.selector”).on(“change”) but it does not detect changes.
Hi Edson, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hey Gio, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hey Mate,
Is It possible to Hide all the shipping fields until the Address is fulfilled?
I’ve Installed the Google Places API and a plugin that transfer the information to the rest of the fields when the Address is completed.
I’ve tried to modify your script but something is not working. can you have a look?
Thanks!
/* HIDE & SHOW WOOCOMMERCE FIELDS */
add_action( 'woocommerce_after_checkout_form', 'bbloomer_conditionally_hide_show_checkout_field', 9999 );
function bbloomer_conditionally_hide_show_checkout_field() {
wc_enqueue_js( "
jQuery('#billing_address_1').keyup(function() {
if (jQuery(this).val().length == 0) {
jQuery('#billing_city', '#billing_state', '#billing_postcode', '#billing_country').hide();
} else {
jQuery('#billing_city', '#billing_state', '#billing_postcode', '#billing_country').show();
}
}).keyup();
");
}
Hi Kris, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Questions? Feedback? Support? Leave your Comment Now! _____
If you are writing code, please wrap it between shortcodes: [php]code_here[/php]. Failure to complying with this (as well as going off topic, not writing in English, etc.) will result in comment deletion. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining BloomerArmada to get blog comment reply priority, ask me 1-to-1 WooCommerce questions and enjoy many more perks. Thank you :)
With 100,000 (and growing) monthly organic sessions, Business Bloomer is the most consistent, most active and most complete WooCommerce development/customization blog.
Of course this website itself uses the WooCommerce plugin, the Storefront theme and runs on a WooCommerce-friendly hosting.
Thanks for this snippet!
How can we hide/show fields based on selected shipping method?
I’m trying to get it working with $(“.selector”).on(“change”) but it does not detect changes.
Hi Edson, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi Rodolfo,
great snippet!
But how to edit it if you wanna show/hide a field depending on values of a dropdown?
Thanks
Hey Gio, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hey Mate,
Is It possible to Hide all the shipping fields until the Address is fulfilled?
I’ve Installed the Google Places API and a plugin that transfer the information to the rest of the fields when the Address is completed.
I’ve tried to modify your script but something is not working. can you have a look?
Thanks!
Hi Kris, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Nice! Thanks for spend your time creating this snippets.
Awesome!