Snippets
Shopify Liquid snippets
Production Liquid patterns for sections, products, cart, loops, and schema — used in real Shopify theme development workflows.
About this resource
These snippets complement the interactive Liquid Cheat Sheet. Use them when building sections manually or validating converter output. Each pattern follows OS 2.0 conventions with schema-aware settings and performance-safe filters.
Search by keyword when you know the filter or tag you need. Copy into your section or snippet file, then adapt variable names to your schema ids. Prefer snippets with explicit render parameters over global assigns when wiring into new sections.
Browse
100 resources
Checkbox Schema Setting
Boolean toggle stored as true or false.
{
"type": "checkbox",
"id": "show_rating",Schema Presets with Blocks
Pre-populates blocks when a merchant adds the section.
"presets": [
{
"name": "FAQ",Limit Blocks (max_blocks)
Caps how many blocks merchants can add to a section.
{
"name": "Logo list",
"max_blocks": 8,Schema Header Divider
Groups settings in the sidebar for easier editing.
{
"type": "header",
"content": "Colors"