A long title but that is what I need… because I’m in a situation I need this solutions.
I have a simple pierce of code on my website, lets name it for this example: domain.com
{exp:channel:entries limit="1" channel="news" disable="trackbacks|member_data|category_fields|categories" orderby="entry_id"}
<div class="news">
{newsimage}
{paginate}
{if previous_page}
<a href="http://{auto_path}" title="Next" class="next">Next</a>
{/if}
{if next_page}
<a href="http://{auto_path}" title="Previous" class="prev">Prev</a>
{/if}
{/paginate}
</div>
{/exp:channel:entries}Everything is working fine, but when I press the next/previous button the link is: domain.com/P1, domain.com/P2 etc. That is not handy because when a new item is placed all items have a other number.
Is there a way that the next/previous link is the permalink for the item?
I tried first the Next/Previous Entry Linking, but that is not working either…