Remove WooCommerce Billing Address Fields for Free Checkout Icon

Remove WooCommerce Billing Address Fields for Free Checkout

By HelgaTheViking

Active Installs

100+

Last Updated

December 28, 2021

First Released

April 18, 2020

Download History (Last one month)


Contributors

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:

  1. billing_address_1
  2. billing_address_2
  3. billing_city
  4. billing_state
  5. billing_postcode
  6. billing_country
  7. billing_phone

That’s it!

Support

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

  1. Upload the plugin folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
How to exclude billing phone field from removal?

To 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' );

Changelog

2021-12-28 – 1.0.1

  • New: Introduce wc_billing_fields_to_remove_for_free_checkout filter.
  • Fix: Do not remove address when shipping is required. Fixes “Please enter an address to continue.” error on checkout.

1.0

  • Initial release.
<br />
<b>Warning</b>:  Undefined array key /home/ylinkin/truewp.net/wp-content/plugins/truewp-plugin-info/truewp-plugin-info.php on line 756
" width="120" height="120">

Available Versions

Version Download Type
1.0.1 Download Stable
Development Download Trunk

Plugin Info

  • Version: 1.0.1
  • Last Updated: December 28, 2021
  • Active Installs: 100+
  • WordPress Version: 5.3 or higher
  • Tested up to: 5.8.13
  • PHP Version: or higher
  • Tags:    
    address billing checkout woocommerce

Ratings


5.0 out of 5 stars. (5 reviews)

See all reviews
Scroll to Top