It can be a hassle to fill out your billing address if you aren't actually paying any money. This plugin removes the billing address fields from …
It can be a hassle to fill out your billing address if you aren’t actually paying any money. This plugin removes the billing address fields from WooCommerce checkout when the cart total is 0, ie: Free.
Specifically the following fields are removed:
That’s it!
Support is handled in the WordPress forums. Please note that support is very limited. Before posting a question, please confirm that the problem still exists with a default theme and with all other plugins disabled.
Please report any bugs, errors, warnings, code problems to Github
plugin
folder to the /wp-content/plugins/
directoryTo achieve this you can add the following snippet to your theme’s functions.php
or via the Code Snippets plugin.
/** * Do not remove billing phone * * @param array $fields The billing fields we are removing * @return array */ function kia_do_not_remove_billing_phone( $fields ) { return array_diff( $fields, array( 'billing_phone' ) ); } add_filter( 'wc_billing_fields_to_remove_for_free_checkout', 'kia_do_not_remove_billing_phone' );
wc_billing_fields_to_remove_for_free_checkout
filter.