> For the complete documentation index, see [llms.txt](https://help.stockeo.solvenium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.stockeo.solvenium.com/data-mapping/title.md).

# 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>
