Skip to content

Instantly share code, notes, and snippets.

@Stoltze
Last active March 17, 2017 12:49
Show Gist options
  • Save Stoltze/f1247b004fb8e88756068e0968f5bd95 to your computer and use it in GitHub Desktop.
Save Stoltze/f1247b004fb8e88756068e0968f5bd95 to your computer and use it in GitHub Desktop.
Make "Gravity Form"-fields possible to make invisible + Danish way of ZIP
<?php
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' );
add_filter( 'gform_address_display_format', 'address_format' );
function address_format( $format ) {
return 'zip_before_city';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment