• Resolved kay81

    (@kay81)


    Hello,

    Thank you so much for a very great plugin. I have a website that I wanted to add a “Post a free Ad” section to and when I found your plugin and installed it I was happy to see it was perfect for my needs. Best part is the simplicity of it. However my excitement was cut short when I realized I might not be able to use it since in the list of Currencies that of Nigeria, Nigerian Naira with the symbol ? isn’t on the list. It is important I use my country’s currency since that’s my target audience. My site is priceinnigeriahq.com so it will totally be confusing and ineffective to list prices in dollars.

    Please tell me there is a workaround for this. I really would like to use the plugin.

Viewing 1 replies (of 1 total)
  • Hi,
    we are happy that you like our work.

    You could simply add new currency, using simple code snippet:

    add_filter("adverts_currency_list", "adverts_currency_list_naira");
    function adverts_currency_list_naira($currency_list) {
        $currency_list[] = array("code"=>"NGN", "sign"=>"?", "label"=>__("Nigerian Naira", "adverts") );
        return $currency_list;
    }

    You can add this snippet in your functions.php

    If you will have troubles with that, please contact us via e-mail and we will happy to do it for you.

Viewing 1 replies (of 1 total)
  • The topic ‘Is There A Work Around To Add My Country’s Currency To The List?’ is closed to new replies.