add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { etheme_child_styles(); } add_filter('woocommerce_currency_symbol', 'my_currency_symbol', 10, 2); function my_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'AED': $currency_symbol = 'AED '; break; } return $currency_symbol; }defined( 'ABSPATH' ) || exit( 'Direct script access denied.' ); /* * Load theme setup * ******************************************************************* */ require_once( get_template_directory() . '/theme/theme-setup.php' ); /* * Load framework * ******************************************************************* */ require_once( get_template_directory() . '/framework/init.php' ); /* * Load theme * ******************************************************************* */ require_once( get_template_directory() . '/theme/init.php' );
WordPress › Error

There has been a critical error on this website.

Learn more about troubleshooting WordPress.