Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Created May 13, 2015 13:30
Show Gist options
  • Save mindctrl/f7506b46e1b77511529d to your computer and use it in GitHub Desktop.
Save mindctrl/f7506b46e1b77511529d to your computer and use it in GitHub Desktop.
Easy Digital Downloads - Remove billing details section on the checkout screen.
/**
* Removes the billing details section on the checkout screen.
*/
function jp_disable_billing_details() {
remove_action( 'edd_after_cc_fields', 'edd_default_cc_address_fields' );
}
add_action( 'init', 'jp_disable_billing_details' );
@wowthemesnet
Copy link

wowthemesnet commented Dec 6, 2021

For EU VAT, the only thing needed is State. So ZIP, city, Province are just getting in seller's way for conversion...
I'll test just with the State field to see what happens. The idea is to first unset the required and then hide with CSS.

@wowthemesnet
Copy link

This is the ideal checkout even with EU.
ideal

@dipakcg
Copy link

dipakcg commented Nov 15, 2022

Doesn't work with the latest Easy Digital Downloads version 3.1.0.2.

I can still see all the fields under Billing details section.

Screenshot  2022-11-10 230613 17051

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment