A store owner encountered an issue where “View All” buttons on featured collection sections redirected to a “Default Collection” instead of showing all products from the intended collection (e.g., tees, stickers). Each collection was properly configured with tags and manual product associations.
Troubleshooting attempts:
Initially tried modifying the Liquid code in sections/featured-collection to use {{ section.settings.collection.handle }} instead of {{ section.settings.collection.title }}
The URL https://funtakers.com/collections/tees?view=all continued redirecting incorrectly despite code changes
Resolution:
After several days of collaboration with a developer, the issue was identified as theme-specific. The store uses a non-standard theme (not Dawn), which caused the redirect behavior.
Workaround implemented:
Rather than modifying the theme structure, the owner increased the default product display from 20 to 100 products per collection page. This eliminated the need for a “View All” button while maintaining acceptable loading speeds through image optimization.
Summarized with AI on October 29.
AI used: claude-sonnet-4-5-20250929.
So, all of my collections are separated by category (i.e; tees, bottoms, etc) and have associated tags and all products are manually associated with their correct collection. For example, when I select my shirts collection I have the maximum (25) products listed. However, if customers wish to view all of the tees in the collection they would select the “View All” button as seen in the attached snippet. However, this redirects customers to the “Default Collection” which is apparently assigned to 5 collections. This Default Collection is not needed and is redundant as each collection is already separated accordingly. There are no URL redirects and my code seems in order. This issue is persistent across multiple collections (another example: Stickers page)
I haven’t had any luck trying to redirect the button correctly so all products in the featured collection can be viewed and I’d appreciate any help!
Here is the snippet from my sections/featured-collection:
{%- if section.settings.show_view_all and more_in_collection -%}
{{ 'sections.featured_collection.view_all' | t }} {{ collections[section.settings.collection].title }}
It looks like the issue lies in the href of the “View All” button. The URL being generated by your current code uses {{ section.settings.collection.title }} to pull the collection title, which may not match the exact URL structure of your collections.
It looks like the issue lies in the href of the “View All” button. The URL being generated by your current code uses {{ section.settings.collection.title }} to pull the collection title, which may not match the exact URL structure of your collections.
You can try updating the link to use the actual handle of the collection (which is a URL-friendly version of the collection’s title) rather than the collection’s title. This will ensure that the URL is correct, and customers are directed to the correct collection.
Here’s the modified code for the “View All” button:
{%- if section.settings.show_view_all and more_in_collection -%}
{{ 'sections.featured_collection.view_all' | t }} {{ collections[section.settings.collection].title }}
{%- endif -%}
In this change:
{{ section.settings.collection.handle }} is used instead of {{ section.settings.collection.title }} to ensure that the correct collection handle is used in the URL.
The handle will match the actual URL of the collection on your site (e.g., /collections/tees), and it should resolve the issue of the “View All” button redirecting to the “Default Collection”.
Let me know if this resolves the issue!
If I was able to help you, please don’t forget to Like and mark it as the Solution!
If you’re looking for expert help with customization or coding, I’d be delighted to support you. Please don’t hesitate to reach out via the email in my signature below—I’m here to help bring your vision to life!
Thanks for your insight, I appreciate it. I tried your snippet and seems the issue is persistent. The URL "https://funtakers.com/collections/tees?view=all" still re-directs to the default collections. This is said for both stickers & tees pages respectively. Would you be open to taking a look into our code yourself; Thanks!
I appreciate the feedback and the opportunity to assist you further.
I’m sorry to hear that the issue persists. I’d be happy to take a closer look at your code to identify the root cause. To proceed efficiently, please send me a message via email so we can discuss this in more detail and ensure we resolve the issue promptly.
For anyone with a similar issue, this is dependent on the theme you are using. I don’t use a common theme such as Dawn so, the results can vary.
I was unable to resolve the issue. I worked with Raj for several days and he helped explain why my theme was the issue. Since I didn’t want to modify the theme, I instead opt’ed to modify the results page per category on our site. Increasing the default preview from 20 to 100 products. This seems a bit excessive, but with modern image compression/optimization it didn’t make much of a difference in terms of loading speeds and overall connectivity to our site visitors.