Hello, Guys I Hope, you are doing well can someone help me with this.
The main job is to add dynamic pagination on www.greatbayhome.com.
Currently, the URL changes from https://greatbayhome.com/blogs/news to https://greatbayhome.com/blogs/news?page=2 as the user goes from blog page 1 (main blog page) to blog page 2.
We want to add a dynamic pagination functionality, so we can keep the main page URL, https://greatbayhome.com/blogs/news throughout all blog pages.
{%- paginate blog.articles by 5 -%}
{%- for article in blog.articles -%}
{%- endfor -%}
{%- if paginate.pages > 1 -%}
{%- endif -%}
{%- endpaginate -%}
@Hamzataj
try this code. where you want to Show the pagination.
My point is that
Currently, the URL changes from https://greatbayhome.com/blogs/news to https://greatbayhome.com/blogs/news?page=2 as the user goes from blog page 1 (main blog page) to blog page 2.
We want to add a dynamic pagination functionality, so we can keep the main page URL, https://greatbayhome.com/blogs/news throughout all blog pages.
yes please guide me how can I do this