• I want to display the drop-down by Zone wise. Instead of the name of each country in select Drop-down .

    I don’t want to display the all selected country in drop-down . I want to display the name of the zone only .Please guide .

    Thanks

Viewing 1 replies (of 1 total)
  • you may rename woocommerce default country with following codes

    add_filter( 'woocommerce_countries', 'rename_countries' );
    
    function rename_countries( $countries ) {
    	$countries['BD'] = 'zone1';
    	$countries['BG'] = 'zone2';
    	$countries['BR'] = 'zone3';
       return $countries;
    }

    add above code to theme function.php

    • This reply was modified 5 years, 10 months ago by akanjana.
Viewing 1 replies (of 1 total)
  • The topic ‘can Display the Dropdown by zone name instead of select country name’ is closed to new replies.