Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Chad Butler

    (@cbutlerjr)

    I would look here for any external processes that may exercise control over navigation, provided that your navigation display is outside of the content area (i.e. this is a regular WP site and not using some kind of builder plugin/theme that has added a navigation area to the main content area).

    WP-Members doesn’t (currently) do anything with navigation (other than the current logged in menus feature). Under normal conditions (i.e. a relatively default install), it would only be filtering the main content (which would likely be the <article> tag) and the comments section (div ID “comments”).

    If you’re using the logged in menus feature though, you may need to look at whether you’ve defined a menu for the logged in state of that menu area (assuming it is a define menu area).

    Thread Starter airdrummer

    (@airdrummer)

    external processes? regular wp site? i’ve subthemed 2013, and here is my single.php:`<?php
    /**
    Template Name: single
    * The template for displaying all single posts
    *
    * @package WordPress
    * @subpackage camerata2016
    * @since Twenty Thirteen 1.0 */

    get_header();
    get_sidebar();
    ?>
    <div id=”primary” class=”content-area”><!– single#primary –>
    <div id=”content” class=”site-content” role=”main”><!– single#content –>
    <?php /* The loop */
    while ( have_posts() )
    {
    the_post();
    get_template_part( ‘content’, get_post_format() );
    comments_template();
    } ?>
    </div><!– single#content –>
    </div><!– single#primary –>
    <!– single#twentythirteen_post_nav –>
    <?php twentythirteen_post_nav();
    get_footer(); ?><!– single#afterfooter –>`
    and while non-loggedin shows next/prev links:`<!– single#twentythirteen_post_nav –>
    <nav class=”navigation post-navigation” role=”navigation”>
    <h1 class=”screen-reader-text”>Post navigation</h1>
    <div class=”nav-links”>
    <a href=”https://cardinalglen.org/bee-best/&#8221; rel=”prev”><span class=”meta-nav”>←</span> bee best;-)</a> <a href=”https://cardinalglen.org/bee-bester/&#8221; rel=”next”>bee bester;-) <span class=”meta-nav”>→</span></a>
    </div><!– .nav-links –>
    </nav><!– .navigation –>
    </div><!– #main –>
    <footer id=”colophon” class=”site-footer” role=”contentinfo”>
    </footer><!– #colophon –>`
    the entire nav section is missing when logged in…

    Thread Starter airdrummer

    (@airdrummer)

    doesn’t really matter…nobody logs in anyways;-}

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘post navigation missing for logged-in users’ is closed to new replies.