• Hello

    Is pending ads supposed to show up in the users manage ads section? if so, there not showing up on my site

    Thanks

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

    (@gwin)

    Hi,
    by default, the pending ads do not show in the [adverts_manage] shortcode, but i am considering changing that soon.

    To have the pending ads shown in the [adverts_manage] right now just add the code below in your theme functions.php file

    
    add_filter( "adverts_sh_manage_list_statuses", function( $s ) {
        $s[] = "pending";
        return $s;
    } );
    

    Please I really hope this will be added in the next update. this feature will be really helpful especially when users post ads and fail or forget to make payment. they can always go back to the (adverts-manage) page to complete payment of their pending ads. I hope a button showing (Complete Payment) will be added to premium pending ads

    Plugin Author Greg Winiarski

    (@gwin)

    This will most likely be added but note that using the code i pasted above is just as good as having this function in WPAdverts core.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘pending ads’ is closed to new replies.