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
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.