---
title: "Chaining Filters"
slug: "liquid-tags-chaining-filters"
updated: 2026-03-24T13:29:46Z
published: 2026-03-24T13:29:46Z
canonical: "academy.insiderone.com/liquid-tags-chaining-filters"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://academy.insiderone.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Chaining Filters

The chaining filters apply left to right. Each filter receives the output of the previous one.

```plaintext
{{ " hello world " | strip | upcase }}
→  HELLO WORLD

{{ name | default: "Guest" | upcase }}
→  GUEST   (if name is empty)
→  ALICE   (if name is "Alice")

{{ c_membership_date | timezone: "Europe/Istanbul" | time_format: "DD MMMM YYYY, HH:mm" }}

{{ c_last_order_amount | times: 1.18 | round: 2 | number_format: "dot, comma" }}
→  price with 18% tax, rounded, formatted

{{ score | at_least: 0 | at_most: 100 }}
→  clamped between 0 and 100

{{ "a,b,c" | split: "," | sort | reverse | join: " - " }}
→  c - b - a
```
