Skip to content

Instantly share code, notes, and snippets.

@mklasen
Last active May 29, 2019 13:21
Show Gist options
  • Save mklasen/20691e7385d2e2f9e2e5471592b5337d to your computer and use it in GitHub Desktop.
Save mklasen/20691e7385d2e2f9e2e5471592b5337d to your computer and use it in GitHub Desktop.
Woocommerce countries for Gravity Forms
<?php
add_filter( 'gform_countries', 'gform_use_wc_countries' );
function gform_use_wc_countries() {
if( class_exists( 'WC') ) {
return WC()->countries->countries;
}
}
@YourMark
Copy link

Ik zou wel even een check toevoegen :-)

if( class_exists( 'WC') ) {
	return WC()->countries->countries;
}

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