• Resolved rscarter1

    (@rscarter1)


    Our list of users (agents) are no longer showing. We add our agents through the user post type. I see this error:

    Pods Access Rights: Admin-only Notice
    The content below is not public and may not be available to everyone else.
    How access rights work with Pods (Documentation) | Edit other access right options

    In the back end, the user post type cannot be changed to public. We cannot figure out what is goingon.

    I set the Dynamic Features to enabled but this did not help. The Content Privacy is still Private.

    • This topic was modified 8 months, 3 weeks ago by rscarter1.
    • This topic was modified 8 months, 3 weeks ago by rscarter1.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter rscarter1

    (@rscarter1)

    Adding this code to the functions fileand then clearing the cache fixed the issue.

    function fix_page_query() {
        if ( post_type_exists( 'page' ) ) {
            global $wp_post_types;
            $wp_post_types['page']->publicly_queryable = true;
        }
    }
    add_action( 'init', 'fix_page_query', 1 );

    AND I had to set Restrict Dynamic Features to “Unrestricted”

    • This reply was modified 8 months, 3 weeks ago by rscarter1.
Viewing 1 replies (of 1 total)
  • The topic ‘Users no longer showing’ is closed to new replies.