# Overview

## Liquid Objects <a href="#liquid-tags" id="liquid-tags"></a>

The CMS content of your shop can be accessed using objects such as `product`, `collection`, or `cart`. You can place these objects in Webflow using the `li-object` tag. Learn more about the available options with Shopify objects in the [Objects chapter](/liquid-attributes/objects.md).&#x20;

## Liquid Filters

With liquid filters, you can modify the output of your content. You can calculate values, format a string (text) and so much more. You can find a list of all filters [here](https://shopify.dev/docs/api/liquid/filters) or in the Shopify [Cheat sheet](https://www.shopify.com/partners/shopify-cheat-sheet).

Filters can be applied to a `li-object` value by using a pipe symbol `|` followed by the desired filter. Learn more about all the possibilities with Shopify filters in the [Filters chapter](/liquid-attributes/filters.md).

## Liquid Tags <a href="#liquid-tags" id="liquid-tags"></a>

Liquid tags, in the context of the Shopify Liquid template language, are special markers enclosed in curly braces and percentage signs, like `{% ... %}`. These tags are used to perform various control and logic operations within the template. Liquid tags are responsible for executing specific actions, such as loops, conditionals, and more, to dynamically generate content or perform operations on the data.

To use this functionality in Webflow, we have prepared the following tags. These tags will always wrap the `div` they are attached on.

You can't apply multiple liquid tags (`li-for`, *`li-if`*, `li-unless`) to one element. If you need that, you should use the `:inside` modifier to display the tag inside the `div` it's applied. Learn more about all the possibilities with Shopify tags in the [Filters chapter](/liquid-attributes/filters.md), [Conditional chapter ](/liquid-attributes/conditional.md)and [Other Liquid Tags](/liquid-attributes/other-liquid-tags.md) chapter.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.liquiflow.app/liquid-attributes/overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
