• i am adding following code at the end of theme function but i cant see any currency added in pricing.
    add_filter(‘adverts_currency_list’, ‘add_adverts_currency’);
    function add_adverts_currency($list) {

    $list[] = array(
    “code”=>”NGN”, // ISO 4217 currency code, see
    “sign”=>”₦”, // currency prefix or postfix
    “label”=>”Nigerian Naira” // currency long name
    );
    return $list;
    }

    The page I need help with: [log in to see the link]

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

    (@gwin)

    Hi,
    the new currency you should see in wp-admin / Classifieds / Options / Core panel in the Currency field dropdown at the end of the list, can you see it there?

    If not then it looks like the code you added at the end of the file is not executed for some reason.

    In this case you can just create a new blank WP plugin and paste the code there.

Viewing 1 replies (of 1 total)

The topic ‘Adding New Category’ is closed to new replies.