You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
550 B
21 lines
550 B
<?php
|
|
|
|
add_filter('woocommerce_currency_symbol', 'change_aed_currency_symbol', 10, 2);
|
|
|
|
function change_aed_currency_symbol($currency_symbol, $currency) {
|
|
if ($currency == 'AED') {
|
|
$currency_symbol = 'AED';
|
|
}
|
|
return $currency_symbol;
|
|
}
|
|
|
|
add_filter('timber/context', function($context) {
|
|
// Передаем все нужные константы в контекст Twig
|
|
$context['CONSTANTS'] = [
|
|
'DOMAIN' => defined('SITE_DOMAIN') ? SITE_DOMAIN : null,
|
|
];
|
|
|
|
return $context;
|
|
});
|
|
|
|
|
|
|