Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Would be great to figure out how to override this error. You can see it when clicking through the pagination at the bottom of the site (calcio90.com)
TBH I'd love to find a way to remove the pagination altogether and have an automatic load, but removing this … error would be a great first step!
Much appreciated!
Just checked your store calcio90.com @jjdelv but without further investigation and code review unfortunately I wouldn't be able to help you
In the html source itself the … is getting converted to "…" so it's getting yet another html sequence escape when it doesn't need it.
Always backup themes before making any customizations.
Search the collection template for the pagination, or pagination snippet.
Your looking for "…" or it's translation key equivalent, e.g; {{ 'general.pagination.ellipse' | t | escape }}.
It's likely either a custom string was added to the translation key itself so the ampersand gets escaped, or is an additional escape filter and it may either need to be removed or replaced with escape_once
https://shopify.dev/docs/api/liquid/filters/escape
https://shopify.dev/docs/api/liquid/filters/escape_once
You could also try getting a new install of the same theme version and checking if the behavior is a bug in the theme itself , if so contact the theme devs.
But if you cannot find any of the above you probably need to hire someone to dig for the problem and fix it.
Contact paull.newton+shopifyforum@gmail.com for the solutions you need
Save time & money ,Ask Questions The Smart Way
Problem Solved? ✔Accept and Like solutions to help future merchants
Answers powered by coffee Thank Paul with a ☕ Coffee for more answers or donate to eff.org
Hi Paul! Thanks for this. In Pagination.liquid I see this - not sure if it helps clarify things!
<ul class="pagination">
<li class="arrow {% unless paginate.previous %} disabled {% endunless %}"><a class="prev" href="{{ paginate.previous.url }}" title="{{ paginate.previous.title }}">
<span class="visually-hidden">{{ 'general.accessibility_labels.previous' | t }}</span>
<span aria-hidden="true">{%- render 'theme-symbols', icon: 'arrow-long' -%}</span>
</a></li>
{% for part in paginate.parts %}
{% if part.is_link %}
<li><a href="{{ part.url }}" title="">{{ part.title | escape }}</a></li>
{% else %}
{% if part.title == paginate.current_page %}
<li class="active"><span>{{ part.title | escape }}</span></li>
{% else %}
<li><span>{{ part.title | escape }}</span></li>
{% endif %}
{% endif %}
{% endfor %}
<li class="total-part-container">
<span>{{ paginate.current_page }} / {{ paginate.pages }}</span>
</li>
<li class="arrow {% unless paginate.next %} disabled {% endunless %}"><a class="next" href="{{ paginate.next.url }}" title="{{ paginate.next.title }}">
<span class="visually-hidden">{{ 'general.accessibility_labels.next' | t }}</span>
<span aria-hidden="true">{%- render 'theme-symbols', icon: 'arrow-long' -%}</span>
</a></li>
</ul>
Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024