Skip to content

Instantly share code, notes, and snippets.

@driesg
Forked from thewebprincess/gravity-au.php
Created August 18, 2014 02:59
Show Gist options
  • Save driesg/6eca9d36f30ab00ec771 to your computer and use it in GitHub Desktop.
Save driesg/6eca9d36f30ab00ec771 to your computer and use it in GitHub Desktop.
<?php
// Gravity Forms Custom Addresses (Australia)
add_filter('gform_address_types', 'australian_address', 10, 2);
function australian_address( $address_types, $form_id ) {
$address_types['australia'] = array(
'label' => 'Australia', //labels the dropdown
'country' => 'Australia', //sets Australia as default country
'zip_label' => 'Post Code', //what it says
'state_label' => 'State', //as above
'states' => array(
'',
'Australian Capital Territory',
'New South Wales',
'Northern Territory',
'Queensland',
'South Australia',
'Tasmania', 'Victoria',
'Western Australia'
)
);
return $address_types;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment