• Resolved guissmejia

    (@guissmejia)


    Buenas tardes, me gustaría saber si es posible que se pueda agregar una opción en la que después de que el usuario quiera publicar un anuncio, el mismo entre en un estado pendiente hasta que el administrador del sitio lo pueda aprobar y posteriormente ser visible en el listado de anuncios.

    El complemento es perfecto, sencillo, pero esa opción es vital para poder usar el complemento al 100% en mi sitio web.

    Gracias! Estaré atenta.

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

    (@gwin)

    Hi,
    it is possible to moderate the free ads, to do that from wp-admin / Pages panel edit the page with [adverts_add] shortcode and add to it “moderate” param so the shortcode will look like this

    
    [adverts_add moderate="1"]
    
    Thread Starter guissmejia

    (@guissmejia)

    I have tried the suggestion that they tell me and it works wonderfully, however now I have just noticed that within the currencies that the plugin manages, there is no option for Colombian Pesos, there is some possibility that this option is integrated into the plugin or there is a How can I add it?

    Thank you, I will be attentive!

    Plugin Author Greg Winiarski

    (@gwin)

    It is possible to register a new currency using adverts_currency_list filter, to add Colombian Peso to the currencies list just add the code below in your theme functions.php file

    
    add_filter("adverts_currency_list", "add_adverts_currency");
    function add_adverts_currency($list) {
        $list[] = array(
            "code"=>"COP", // ISO 4217 currency code, see https://en.wikipedia.org/wiki/ISO_4217
            "sign"=>"$", // currency prefix or postfix
            "label"=>"Colombian Peso" // currency long name
        );
        return $list;
    }
    
    Thread Starter guissmejia

    (@guissmejia)

    Gracias! Funciona a la perfección!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Aprobación de anuncio antes de publicar’ is closed to new replies.