Hello!
I’ve got several blog posts that I want to display on my homepage, however I only want to display 3 blog posts per category. When I do this, I either have to chose to enable pagination or disable it. When I enable it, I get a link to click on for the second page.
Is there any way to set a custom link for this? I would like to have the ‘page 2’ link, if clicked, to take the user to a specific page, NOT reload the entire current page, displaying the remaining entries under a ‘page 2’ title.
Thanks!
Hi Rshaules!
That would take a lot of time and code and would have to be considered custom work. If it was me I would just add the links in manually beneath the blog posts in a codeblock element.
You can use this HTML to get the same styling.
<nav class="pagination"><span class="pagination-meta">Page 1 of 6</span><span class="current">1</span><a href="#" class="inactive">2</a><a href="#" class="inactive">3</a><a href="#">›</a><a href="#">»</a></nav>
Regards,
Elliott
Excellent! Works perfectly. Thanks for providing such excellent support :)