i am looking for for app or solution to do ---> shop by size

i am looking for option like that

like here : https://www.curvy.com.au/pages/shop-by-size

@zivch1

Merchants that want to buy following customization can contact me at paull.newton+shopifyforums@gmail.com with this topic url, store url, and relevant details.

This can be done with a theme customizations creating the shop-by-size page , and for themes lacking collection-filtering adding storefront-filtering for collections.

What this is a custom page with a list/table pointing to an “all-…” collection with a filter added to the url for that variant option. So just have a list of those size-options and that list of links can be made.

.com/collections/all-shirts?_=pf&pf_opt_size=6D.

At it’s most simple create an alternate page template and replace it’s content output with the following:

{%- assign sizes_array = "small,medium,large" | split -%}

{%- for size in sizes_array -%}
    - {{size}}
{%- endfor %}

Changing the sizes to a comma separated string of your stores sizes. styling not included

Modern themes can use storefront filtering to filter collections like this https://help.shopify.com/en/manual/online-store/themes/os20/customize/filters

So the collection url would look like .com/collections/all-shirts/filter.v.option.model=6D

For the example url it looks they are using an app to do the filtering collections, unclear if in tandem with native filtering.

Note: if there’s more than 1k products in a collection they’d also need a separate search app.

Not clear if they are using an app but if you compare the collections page size options there is whole bunch of sizes past 26G missing from the “shop by size” page linked. maybe it’s trying try and fit in the mega-menu systems dropdown too.. /shrug.

Advanced adding filtering to older themes https://shopify.dev/themes/navigation-search/filtering