• Works very well, my only criticism is that private posts/pages should be lockable, ie private posts should appear in the search form.

    In order to lock them currently you need to publish them, then lock/portect, and then make it private again

    Update!! the developer added the minor feuature request/bug. This plugin is now perfect!

    • This topic was modified 5 years, 3 months ago by shawfactor.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter shawfactor

    (@shawfactor)

    And thankyou

    Plugin Author andyexeter

    (@andyexeter)

    Hey shawfactor,

    Thanks for your review and feedback.

    I agree that private posts/pages should show up in the search and I will update the plugin to do that as soon as I have time.

    In the meantime, you can modify the args that the plugin uses to get posts and pages for the search using the postlockdown_get_posts filter:

    add_filter('postlockdown_get_posts', function($args) {
        $args['post_status'][] = 'private';
        return $args;
    });

    This isn’t tested but should work and pull through private posts/pages ??

    Plugin Author andyexeter

    (@andyexeter)

    Hey shawfactor,

    I just wanted to let you know that private posts/pages are now able to be marked as protected or locked in the latest version of the plugin! (2.0.3)

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