/**
* Theme Name: Ignavo Child
* Description: This is a child theme of Ignavo, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: ignavo
* Version: 1.0.6
*/
add_filter('woocommerce_states', function($states){
    $states['SY'] = array(
        'DAM' => 'دمشق',
        'ALE' => 'حلب',
        'HOM' => 'حمص',
        'LAT' => 'اللاذقية',
        'TAR' => 'طرطوس',
        'SWE' => 'السويداء',
        'HAA' => 'الحسكة',
        'DER' => 'دير الزور',
        'IDB' => 'إدلب'
    );
    return $states;
});
add_filter('woocommerce_countries', function($countries){
    $countries['SY'] = 'Syria';
    return $countries;
});

add_filter('woocommerce_continents', function($continents){
    $continents['AS']['countries'][] = 'SY';
    return $continents;
});

add_filter('woocommerce_states', function($states){
    $states['SY'] = array(
        'DAM' => 'دمشق',
        'ALE' => 'حلب',
        'HOM' => 'حمص',
        'LAT' => 'اللاذقية',
        'TAR' => 'طرطوس',
        'SWE' => 'السويداء',
        'DER' => 'دير الزور',
        'HAA' => 'الحسكة',
        'IDB' => 'إدلب'
    );
    return $states;
});
