• Very nice this theme, almost fully working on WP 5.5.1! Nice page navigation also in the blog pages. However… Where are the navigation links below the post in single post mode??? Those “previous/next” links should dinamically show up at the end of every the post, right?

    Any help?

    • This topic was modified 4 years, 1 month ago by AJB Ferreira.

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

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi
    Thanks for contacting to us.
    We have little confusion regarding your issue. Pls more clear about your query, So that we can assist you better.
    Are you want navigation on single post page.

    Thanks
    Akhilesh

    Thread Starter AJB Ferreira

    (@op351net)

    Yes, that’s the normal way in many other themes. Have a look at this example:

    navigation links next/previous at bottom of page, before footer

    Got it? This is very useful when you’re reading posts one by one and wish to continue reading, the next or the previous post…

    Hi
    For this simply follow the given below instruction.
    1 Find the single.php file located in your theme folder.
    2 Open it and replace the code of it with the code mention in this link.

    Let us know for any confusion.

    Thanks

    Thread Starter AJB Ferreira

    (@op351net)

    Thank you for your reply.

    Is that code a temporary workaround? Will you include this in your next release? At least as an option in the Customize area. That would be very fine…

    UPDATE: code in given link doesn’t work…

    • This reply was modified 4 years, 1 month ago by AJB Ferreira.

    Hi @op351net
    Thanks for your suggestion, I will discuss about this feature with our technical and let you know.
    I have checked your singe post and next and previous link showing perfectly.
    See the snapshot https://prnt.sc/utujzw
    https://op351.net/alterar-conta-de-acesso/
    If still you have confusion feel free to contact us.
    Thanks

    Thread Starter AJB Ferreira

    (@op351net)

    Thank you for your reply.

    The links you see in my single post page are not the result of your code. Again, your code doesn’t work! I’ve decided to include my own code to generate links. I may send it to you if you wish a proper code for this function…

    A suggestion for your next release: give user possibility of choosing links before posts, after or both.

    Finally, “If still you have confusion feel free to contact us.” ????? Who’s confused here?

    HI
    Thank you so much.
    Pls send me code you have used for next and previous link.

    Thanks

    Thread Starter AJB Ferreira

    (@op351net)

    In single.php, after <?php get_sidebar();?> or maybe before cause I don’t use sidebar:

    <!-- OP351net -->
    <!-- Previous and Next Post -->
    <?php if( is_single() ) : 
    if( get_next_post() )
    	$next_visible = "display:block";
    else
    	$next_visible = "display:none";
    ?>
    <div id="nextpreviouslinks" style="width:100%;">
    	<div style="float:left;text-align:left;">
    		<span style="font-size:1.4em;font-variant:small-caps;">Older Post</span><br />
    		<i class="fa fa-arrow-left" aria-hidden="true"></i> &nbsp;<strong><?php previous_post_link('%link','%title'); ?></strong>
    	</div>
    	<div style="float:right;text-align:right;<?php echo $next_visible; ?>">
    		<span style="font-size:1.4em;font-variant:small-caps;">Newer Post</span><br />
    		<strong><?php next_post_link('%link','%title'); ?></strong> &nbsp;<i class="fa fa-arrow-right" aria-hidden="true"></i>
    	</div>
    </div>
    <?php endif; ?>
    <!-- /Previous and Next Post -->
    

    It’s working but, obviously, needs improvements… You’re the designer, not me!

    Hi
    Thanks for the code and suggestion.
    Thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Missing navigation links’ is closed to new replies.