Viewing 6 replies - 1 through 6 (of 6 total)
  • I had the exact same problem, but I figured it out.
    In the template-tags.php is the code for this navigation and it contains these parts:

    <a href="<?php the_permalink( $prev_post->ID ); ?>">

    and

    <a href="<?php the_permalink( $next_post->ID ); ?>">

    You should replace that with:

    <a href="<?php echo get_permalink( $prev_post->ID ); ?>">

    and

    <a href="<?php echo get_permalink( $next_post->ID ); ?>">

    That should do it!

    Thread Starter JustBruno

    (@justbruno)

    Thanks, I’ll test that!!

    Thread Starter JustBruno

    (@justbruno)

    Works great!! Thanks Sagolika

    Great to hear that! Glad I could help.

    Theme Author Tom De Smedt

    (@steven_gardner)

    Thanks for Sagolika for posting an answer to this.

    I’ve submitted an update with the fix to www.remarpro.com

    Thanks
    Steven

    Theme Author Tom De Smedt

    (@steven_gardner)

    Latest version should have fixed this issue.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘next and previous buttons not working’ is closed to new replies.