wordpress - How to get woocommerce country select dropdown? -


i want display woocommerce countries list on website. how can country list image?

enter image description here

yes can achieve having following code ever want

global $woocommerce;     $countries_obj   = new wc_countries();     $countries   = $countries_obj->__get('countries');     echo '<div id="my_custom_countries_field"><h2>' . __('countries') . '</h2>';      woocommerce_form_field('my_country_field', array(     'type'       => 'select',     'class'      => array( 'chzn-drop' ),     'label'      => __('select country'),     'placeholder'    => __('enter something'),     'options'    => $countries     )     );     echo '</div>'; 

i have tested same , have used same code in shortcode , used shortcode on product description

enter image description here

let me know if works too.


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -