{"title":"except - Liquid Filter Reference","slug":"except-filter-reference","url":"https://support.storeconnect.com/articles/except-filter-reference","url_markdown":"https://support.storeconnect.com/articles/except-filter-reference.md","subtitle":null,"summary":"Filters a list to exclude items where a given property matches a specified value. Use `except` to remove unwanted categories or types from a collection.","type":"Developer_Documentation","video_url":"","keywords":"liquid, filters, except, lists, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"## Description\n\nReturns all items in the list where the supplied property does not equal the supplied value\n\n| Property | Value |\n|----------|-------|\n| **Return Type** | list |\n| **Category** | lists |\n\n## Examples\n\n\n```liquid\n\n{{ products | except: \"type\", \"whitegoods\" | map: \"name\" | join: \", \" }}\n```\n\n\n**Output:** `Geronimo 9000, Y2K Amaze, Elephant`\n\n\n```liquid\n\n{{ products | except: \"name\", \"Y2K Amaze\" | map: \"name\" | join: \", \" }}\n```\n\n\n**Output:** `Fridgetastic 3000, Coldinator 500, Geronimo 9000, Elephant`\n\n\n```liquid\n\n{{ products | except: \"type\", \"whitegoods\", \"computers\" | map: \"name\" | join: \", \" }}\n```\n\n\n**Output:** `Elephant`"}