в Менеджере валют код - RUR, название -₽
Настройки-Общие Название валюты в личном кабинете - ₽
Кроме того, если выгружаетесь в Яндекс, надо в модуле yandexrealty найти файл admin.php и добавить там в списке обрабатываемых валют свои варианты, типа этого:
static function currencyCheck($currency_string){
$currencies=array('USD', 'EUR', 'RUB');
if($currency_string!=''){
if(in_array($currency_string, $currencies)){
return $currency_string;
}
if(preg_match('/\$/i',$currency_string)){
return 'USD';
}
if(preg_match('/\&euro\;/i',$currency_string)){
return 'EUR';
}
if(preg_match('/€/i',$currency_string)){
return 'EUR';
}
if(preg_match('/\₽/i',$currency_string)){
return 'RUR';
}
if(preg_match('/\₽\;/i',$currency_string)){
return 'RUR';
}
if(preg_match('/руб./i',$currency_string)){
return 'RUR';
}
if(preg_match('/р\./i',$currency_string)){
return 'RUR';
}
}
return FALSE;
}