• Hello i have 2 issue:

    1) if is czech currency this is not have space between number ( seen on http://www.ontwig.com/market/ )

    2) please do it so user can select currency when add a listing ( this is important feature for sites where is more countries )

    Thank you very much

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    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.

    Thread Starter inzerat

    (@inzerat)

    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?

    Plugin Author Greg Winiarski

    (@gwin)

    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.

    Thread Starter inzerat

    (@inzerat)

    1. Do not works

    Plugin Author Greg Winiarski

    (@gwin)

    Sorry, the line $c["sign"] = " CZK"; should be $list[$k]["sign"] = " CZK";

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Currency select box for user’ is closed to new replies.