Beschrijving
Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.
Remove WooCommerce Billing Address Fields for Free Checkout
Beschrijving
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:
- billing_address_1
- billing_address_2
- billing_city
- billing_state
- billing_postcode
- billing_country
- 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
Installatie
- Upload the
pluginfolder to the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
FAQ
How to exclude billing phone field from removal?
To achieve this you can add the following snippet to your theme’s
functions.phpor 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' );
Beoordelingen
Bijdragers & ontwikkelaars
“Remove WooCommerce Billing Address Fields for Free Checkout” is open source software. De volgende personen hebben bijgedragen aan deze plugin.
BijdragersVertaal “Remove WooCommerce Billing Address Fields for Free Checkout” in je eigen taal.
Interesse in ontwikkeling?
Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.
Changelog
2021-12-28 – 1.0.1
- New: Introduce
wc_billing_fields_to_remove_for_free_checkoutfilter. - Fix: Do not remove address when shipping is required. Fixes “Please enter an address to continue.” error on checkout.
1.0
- Initial release.




