Forums
Home / Theme: Eryn / next and previous buttons not working
(@justbruno)
9 years, 12 months ago
When pressed they just reload the same post.
(@sagolika)
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 ); ?>">
<a href="<?php echo get_permalink( $next_post->ID ); ?>">
That should do it!
Thanks, I’ll test that!!
Works great!! Thanks Sagolika
Great to hear that! Glad I could help.
(@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
9 years, 11 months ago
Latest version should have fixed this issue.
Thanks