1. how the currency will be displayed you can configure from wp-admin / Classifieds / Options / Core panel.
2. i am afraid i am not really planning to add this feature anytime soon, this would require some major changes in WPAdverts core adding this could potentially break user sites.
1. OK but i have problem with gap (space) between currency and number.. this is not in administration?
2. This feature will be killer function because only one currency is not for whole world websites 🙁 do you tell me when may be done?
1. so you want to have space between number and CZK? If so then the following code will do this
add_filter( "adverts_currency_list", "my_adverts_currency_list" );
function my_adverts_currency_list( $list ) {
foreach( $list as $k => $c ) {
if( $c["code"] == "CZK" ) {
$c["sign"] = " CZK";
}
}
return $list;
}
2. right now i cannot tell when this functionality will be available, sorry.
Sorry, the line $c["sign"] = " CZK"; should be $list[$k]["sign"] = " CZK";