When I search something, (in this case “TOMY”) I have a issue where for this search for example on page 4 & 5 the search results are out of line
Here’s a link to my website (on page 3 of “TOMY”) https://kaikkistore.com/search?page=4&q=tomy&type=product
The code for my search results are here:
{% paginate search.results by 12 %}
{% if search.performed == false %}
# {{ 'general.search.title' | t }}
{% else %}
#
{{ 'general.search.heading' | t: count: search.results_count }}:
{{ 'general.search.results_with_count' | t: terms: search.terms, count: search.results_count }}
{% endif %}
{% if search.performed and search.results_count == 0 %}
---
{{ 'No results were found, please try another search.'}}
{% endif %}
{% if search.performed %}
{% if search.results_count > 0 %}
---
{% endif %}
## {{ 'general.search.heading' | t: count: search.results_count }}
{% for item in search.results %}
- {% if item.object_type == 'product' %}
{% include 'product-card-grid', product: item %}
{% else %}
{{ item.title }}
{% if item.image %}
{% endif %}
{{ item.title }}
{% if item.published_at %}{{ item.published_at | date: format: "date" }} — {% endif %}
{{ item.content | strip_html | truncate: 200 }}
{% endif %}
{% endfor %}
{% if paginate.pages > 1 %}
{% include 'pagination' %}
{% endif %}
{% endif %}
{% endpaginate %}