post navigation missing for logged-in users
-
here is the page with user NOT logged in:
</article><!-- #post --> <nav class="navigation post-navigation" role="navigation"> <h1 class="screen-reader-text">Post navigation</h1> <div class="nav-links"> <a href="https://cardinalglen.org/we-believe-survivors/" rel="prev"><span class="meta-nav">←</span> We Believe Survivors</a> </div><!-- .nav-links --> </nav><!-- .navigation --> <div id="comments" class="comments-area"> <p class="must-log-in">You must <a href="https://cardinalglen.org/login/?redirect_to=https://cardinalglen.org/deadline-to-register-to-vote/">log in</a> to post a comment.</p> </div><!-- #comments --> </div>and here it is with a logged-in user:
</article><!-- #post --> <div id="comments" class="comments-area"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">comments? <small><a rel="nofollow" id="cancel-comment-reply-link" href="/deadline-to-register-to-vote/#respond" style="display:none;">Cancel reply</a></small> </h3> <form id="commentform" class="comment-form"> <iframe title="Comment Form" src="https://jetpack.wordpress.com/jetpack-comment/?blogid=116062159&postid=3083&comment_registration=1&require_name_email=0&stc_enabled=1&stb_enabled=1&show_avatars=1&avatar_default=mystery&greeting=comments%3F&greeting_reply=Leave+a+Reply+to+%25s&color_scheme=light&lang=en_US&jetpack_version=6.6.1&hc_post_as=jetpack&hc_userid=131&hc_username=tom+wible&hc_userurl=&hc_useremail=a68e822c4d559d48b7af94738bd8928a&_wp_unfiltered_html_comment=6dbb5d939b&sig=3de0bfe0b3ff88557dc1b233b60f1a0403c20883#parent=https%3A%2F%2Fcardinalglen.org%2Fdeadline-to-register-to-vote%2F" style="width: 100%; height: 198px; border: 0px none;" name="jetpack_remote_comment" class="jetpack_remote_comment" id="jetpack_remote_comment" sandbox="allow-same-origin allow-top-navigation allow-scripts allow-forms allow-popups" scrolling="no"></iframe> <!--[if !IE]><!--> <script> document.addEventListener('DOMContentLoaded', function () { var commentForms = document.getElementsByClassName('jetpack_remote_comment'); for (var i = 0; i < commentForms.length; i++) { commentForms[i].allowTransparency = false; commentForms[i].scrolling = 'no'; } }); </script> <!--<![endif]--> </form> </div> <input name="comment_parent" id="comment_parent" value="" type="hidden"> </div><!-- #comments --> </div>wtf?
The page I need help with: [log in to see the link]
-
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).
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/” rel=”prev”><span class=”meta-nav”>←</span> bee best;-)</a> <a href=”https://cardinalglen.org/bee-bester/” 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…doesn’t really matter…nobody logs in anyways;-}
The topic ‘post navigation missing for logged-in users’ is closed to new replies.