/*
Theme Name: Hello Elementor Child
Theme URI: http://example.com/
Description: Child theme for Hello Elementor
Author: Your Name
Author URI: http://example.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Import parent theme style */
@import url("../hello-elementor/style.css");

/* Custom CSS ekhane add koro */






add_filter( 'woocommerce_states', 'custom_japan_prefectures_full' );
function custom_japan_prefectures_full( $states ) {

    $states['JP'] = array(
        '01TY'  => '1. Toyama',
        '02IS'  => '2. Ishikawa',
        '03FK'  => '3. Fukui',
        '04SZ'  => '4. Shizuoka',
        '05AI'  => '5. Aichi',
        '06GF'  => '6. Gifu',
        '07MI'  => '7. Mie',
        '08NG'  => '8. Nagano',
        '09NI'  => '9. Niigata',
        '10TK'  => '10. Tokyo',
        '11KN'  => '11. Kanagawa',
        '12CB'  => '12. Chiba',
        '13ST'  => '13. Saitama',
        '14IB'  => '14. Ibaraki',
        '15GN'  => '15. Gunma',
        '16TC'  => '16. Tochigi',
        '17YM'  => '17. Yamanashi',
        '18YG'  => '18. Yamagata',
        '19FS'  => '19. Fukushima',
        '20OK'  => '20. Okayama',
        '21HS'  => '21. Hiroshima',
        '22YY'  => '22. Yamaguchi',
        '23TT'  => '23. Tottori',
        '24SM'  => '24. Shimane',
        '25KT'  => '25. Kyoto',
        '26SG'  => '26. Shiga',
        '27NR'  => '27. Nara',
        '28OS'  => '28. Osaka',
        '29HY'  => '29. Hyogo',
        '30WK'  => '30. Wakayama',
        '31AM'  => '31. Aomori',
        '32AK'  => '32. Akita',
        '33IW'  => '33. Iwate',
        '34KM'  => '34. Kumamoto',
        '35MZ'  => '35. Miyazaki',
        '36KG'  => '36. Kagoshima',
        '37FKU' => '37. Fukuoka',
        '38SGA' => '38. Saga',
        '39OT'  => '39. Oita',
        '40NGS' => '40. Nagasaki',
        '41TS'  => '41. Tokushima',
        '42KGA' => '42. Kagawa',
        '43KC'  => '43. Kochi',
        '44EH'  => '44. Ehime',
        '45HK'  => '45. Hokkaido'
    );

    return $states;
}

add_filter( 'woocommerce_sort_states', '__return_false', 9999 );


