• Resolved Frank

    (@frankswift)


    Hi there,

    I am trying to get WPAdverts going and noticed an issue where ads that are still in review do not show up on the Manage page (where I use the “manage” shortcode).

    When I approve the ad in the editor, it still doesn’t show up.

    However, when I use QUICK EDIT to change the status from pending review to published, it finally shows up on Manage.

    I don’t think this is a caching issue as I flushed it repeatedly and pending ads still won’t show.

    I’d like to use the manage feature as I think it would be easier to review ads this way, so would appreciate any assistance. Thank you!

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

    (@gwin)

    Hi,
    currently, the Pending Ads are not being displayed in the [adverts_manage] (the idea was the users cannot edit it until Ad is approved) although i am considering changing this in one of next releases since the WooCommerce Integration does show pending Ads.

    Either way, to show the Pending Ads in [adverts_manage] 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 note that the [adverts_manage] is for users only, so you will be able to see there only the Ads you have posted, also you will not be able to approve the Ads from there, so it might not be the best choice for Ads reviewing i am afraid.

    Thread Starter Frank

    (@frankswift)

    Thanks, I actually bought the extension bundle so I am glad to see we won’t need it when we use WooCommerce, but it’s the perfect temporary fix for now. Thank you!

    Plugin Author Greg Winiarski

    (@gwin)

    Ok, great, i am marking this thread as resolved then, maybe someone in the future will find it helpful as well :).

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Unapproved Ads Not Showing in Manage’ is closed to new replies.