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

    (@pluginsware)

    ACADP core doesn’t support “Indonesia rupiah”. But, you can add your own currency by adding a small piece of code.

    1. Open your theme’s functions.php file
    2. Add the following code to the bottom of this file,

    function extra_acadp_currencies( $currencies ) {
    	$currencies["Rp"] = __("Indonesian Rp", "advanced-classifieds-and-directory-pro");
    	return $currencies;
    }
    add_filter("acadp_currencies", "extra_acadp_currencies");

    3. Save the changes.
    4. Go to “Dashboard => Classifieds & Directory => Settings[Misc]” from your WordPress admin panel.
    5. Find the option “Currency” and select your new currency “Indonesian Rp”.
    6. Save the changes.

    That’s it.

    Amazing plugin. How do i add the custom fields to the ” Add new listing” Form?

    Sorry for the stupidity i figured it out ?? Never assigned my custom field to a category.

    Thread Starter gunturmunthe76

    (@gunturmunthe76)

    please guide me to find functions.php

    Go to your theme directory.
    wp-content/themes/yourtheme/ here you will find functions.php or if you have a child theme then functions.php is in your child theme folder

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘I want set currency to indonesian rupiah’ is closed to new replies.