# Title

To create a product in Shopify the requirement is to give it a title. However, it may happen there is no product name in the feed. Stockeo allows you to create a product title by combining several values from the feed using the Liquid formula.

Assume you want to create a title from some properties from the following JSON:

```json
{
    "Stock_No": "210211",
    "Availability": "G",
    "Shape": "OVAL",
    "Weight": "1.7",
    "Color": "G",
    "Diamond_Type": "Natural Diamond",
    "Clarity": "SI2",
    "Cut_Grade": "VG",
    "Polish": "EX",
    "Symmetry": "VG",
    "Measurements": "9.36 X 6.80 X 4.10",
    "Rap_Price": "7300",
}
```

To do this type a Liquid formula in the **Title** field of your automation. For example, the one below:

{% tabs %}
{% tab title="Liquid formula for title" %}

<figure><img src="/files/zoxByEzQTbFsCcodgfvB" alt="The title field of Stockeo Data Mapping section with the Liquid formula"><figcaption><p>The <strong>title</strong> field of the Data Mapping section with the Liquid formula</p></figcaption></figure>
{% endtab %}

{% tab title="Copy the formula" %}

```
{{ Weight }} {{ Shape | downcase }} {{ "cut" }} {{ Color }} {{ Diamond_Type }}
```

{% endtab %}
{% endtabs %}

Will give the following result:

<figure><img src="/files/4lnTUYhs7CJz92xlbv45" alt="Shopify product title created with Stockeo automatically"><figcaption><p>Shopify product title created with Stockeo</p></figcaption></figure>

{% hint style="info" %}
The example above illustrates the creation of automatic product titles in Shopify using JSON as an example. Similarly, this works when the feed is a CSV or XML file. In that case, use the **column**/**node** name instead of the **field** name between the curly brackets in the Liquid formula.
{% endhint %}

### Translations

You can import product titles in different languages. Click on the gear icon to specify the desired language.

<figure><img src="/files/OCx876zboWdf4IjCVTMd" alt=""><figcaption></figcaption></figure>


---

# 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://help.stockeo.solvenium.com/data-mapping/title.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.
