Created
April 19, 2018 16:48
-
-
Save Longkt/49d52806c01ff8f5f6ebe4ce40abec32 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In general settings | |
add_filter( 'woocommerce_general_settings', array( $this, 'add_VN_districts_in_general_settings' ) ); | |
public function add_VN_districts_in_general_settings( $settings ) { | |
$settings[3] = array( | |
'title' => __( 'City', 'woocommerce' ), | |
'desc' => __( 'The city in which your business is located.', 'woocommerce' ), | |
'id' => 'woocommerce_store_city', | |
'default' => '', | |
'type' => 'select', | |
'desc_tip' => true, | |
'options' => array( | |
'HUNG-YEN' => 'Hung Yen', | |
'HA-GIANG' => 'Ha Giang', | |
// Get option for provinces selected $key => $value | |
), | |
); | |
return $settings; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment