<?php
//
// Recommended way to include parent theme styles.
// (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
//
add_action('wp_enqueue_scripts', 'theme_enqueue_styles', 998);
function theme_enqueue_styles() {
$prefix = function_exists('elessi_prefix_theme') ? elessi_prefix_theme() : 'elessi';
wp_enqueue_style($prefix . '-style', get_template_directory_uri() . '/style.css');
wp_enqueue_style($prefix . '-child-style', get_stylesheet_uri());
}
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['EG'] = array(
'EG1' => 'البنفسج ',
'EG2' => ' القرنفل',
'EG3'=>' المجاورات ' ,
'EG4' => ' الياسمين ',
'EG5' => ' شرق الاكاديميه ',
'EG6' => ' امتداد المستثمرين الشمالية ',
'EG7' => ' خدمات التجمع الخامس ',
'EG8' => ' ارض النخيل ',
'EG9' => ' المستثمرين الشماليه ',
'EG10' => ' بيت الوطن ',
'EG11' => ' ابو الهول ١ و ٢ و ٣ ',
'EG12' => ' جردينيا ',
'EG13' => ' عائلى الاندلس ',
'EG14' => ' المنطقة الصناعية ',
'EG15' => ' اسكان الشباب ',
'EG16' => ' غرب ا بيلا ',
'EG17' => ' غرب الجولف ',
'EG18' => ' امتداد غرب الجولف ',
'EG19' => ' فيلات ',
'EG20' => ' عمارات ',
'EG21' => ' الحي الاول ',
'EG22' => ' الحى الثانى ',
'EG23' => ' الحي الثالث ',
'EG24' => ' الحي الرابع ',
'EG25' => ' الحي الخامس ',
'EG26' => ' اللوتس ',
'EG27' => ' حى الشويفات ',
'EG28' => ' حى المشتل ',
'EG29' => ' النرجس ',
'EG30' => ' اسكان الجامعه الامريكية ',
'EG31' => ' المستثمرين 1 ',
'EG32' => ' المستثمرين 2 ',
'EG33' => ' المستثمرين 3 ',
'EG34' => ' المستثمرين 4 ',
'EG35' => ' جنوب الاكاديمية ',
'EG36' => ' المستثمرين الجنوبيه ',
'EG37' => ' مثلث الدبلوماسين ',
'EG38' => ' تمر حنة ',
'EG39' => ' التسعين الجنوبى '
);
return $states;
}
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'EGP': $currency_symbol = 'ج.م'; break;
}
return $currency_symbol;
}