# 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="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-d176b6881462f605e555d785115d8c38b0e1c3b0%2Fstockeo-title-field-in-the-data-mapping-section.png?alt=media" 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="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-f0324e3b4e42ca5cc928cb5e3f1d8a513a4c1028%2Fshopify-product-title.png?alt=media" 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="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-b087654c2e2c97c363cd414152a58300455da2d7%2Fdata-mapping-title-french.png?alt=media" alt=""><figcaption></figcaption></figure>
