Skip to content

Instantly share code, notes, and snippets.

@corsonr
Created July 29, 2013 12:27
Show Gist options
  • Save corsonr/6103979 to your computer and use it in GitHub Desktop.
Save corsonr/6103979 to your computer and use it in GitHub Desktop.
WooCommerce - Restrict countries shipping list
<?php
/**
* WooCommerce Extra Feature
* --------------------------
*
* Restrict shipping countries list
*
*/
function woo_override_checkout_fields( $fields ) {
$fields['shipping']['shipping_country'] = array(
'type' => 'select',
'label' => __('My New Country List', 'woocommerce'),
'options' => array('AU' => 'Australia')
);
return $fields;
}
add_filter( 'woocommerce_checkout_fields' , 'woo_override_checkout_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment