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

# Standaardvariabelen

> Ingebouwde variabelen die direct uit je productdata komen: naam, prijs, SKU, afmetingen, voorraad en datumwaarden. Geen instellen nodig, klaar in elk formuleveld.

Met standaardvariabelen plaats je live productdata in elke content, zonder iets in te stellen. Ze zijn ingebouwd in WISEPIM en worden automatisch opgelost per product. Verwijs naar `{{product.price}}` en het toont altijd de huidige prijs. Wijzig de prijs en elke formule die hem gebruikt wordt mee bijgewerkt.

Bekijk de volledige lijst op het tabblad **Standaard** in **Instellingen > [Content Logic](/nl/workflows/content-logic)**.

## Hoe je ze gebruikt

Typ `{{` in een veld met formuleondersteuning om de autocomplete-dropdown te openen. Standaardvariabelen verschijnen gegroepeerd per categorie. Klik op een variabele om deze in te voegen.

```
{{product.name}}       → Air Max 90
{{product.price}}      → 129.99
{{product.sku}}        → NK-AM90
{{current.year}}       → 2026
{{product.margin}}     → 55.00
```

<Tip>
  Je aangepaste productattributen zijn ook beschikbaar. Een attribuut `color` wordt `{{attribute.color}}`. Verwijs naar elk aangepast attribuut als `{{attribute.your_attribute_code}}`.
</Tip>

## Wat je ermee kunt bouwen

Hier zijn veelvoorkomende manieren om standaardvariabelen in te zetten.

<AccordionGroup>
  <Accordion title="Dynamische SEO-titels" icon="search">
    Genereer unieke, keywordrijke SEO-titels voor elk product zonder ze met de hand te schrijven. Pas het toe over je hele catalogus met [Veldwaarde instellen](/nl/essentials/bulk-editing/set-field).

    ```
    {{product.name}} | {{product.brand}} | Buy Online
    ```

    > "Stainless Steel Hex Bolt M10x50 | Fischer | Buy Online"
  </Accordion>

  <Accordion title="Gestructureerde B2B-korte beschrijvingen" icon="ruler">
    Bouw consistente korte beschrijvingen met de specs waar kopers op zoeken.

    ```
    {{product.name}} ({{product.sku}}) | {{product.weight}} {{product.weight_unit}} | {{product.length}}×{{product.width}}×{{product.height}} {{product.dimension_unit}}
    ```

    > "Stainless Steel Hex Bolt M10x50 (SS-HB-M1050) | 0.085 kg | 50×17×17 mm"
  </Accordion>

  <Accordion title="Prijs-per-eenheid waardestatistieken" icon="calculator">
    Toon berekende waardestatistieken zonder een apart veld bij te houden. Definieer een [productvariabele](/nl/workflows/content-logic/product-variables) met de formule:

    ```
    round({{product.price}} / {{product.weight}} * 100) / 100
    ```

    Verwijs er dan naar als `{{product.price_per_kg}}` in je beschrijvingen:

    > "€15.29/kg"
  </Accordion>

  <Accordion title="Automatisch gegenereerde metabeschrijvingen" icon="tag">
    Maak SEO-beschrijvingen met echte prijsdata die automatisch worden bijgewerkt wanneer prijzen veranderen.

    ```
    Buy {{product.name}} for €{{product.price}}. {{product.brand}} quality. SKU: {{product.sku}}. In stock and ready to ship.
    ```

    > "Buy Stainless Steel Hex Bolt M10x50 for €2.45. Fischer quality. SKU: SS-HB-M1050. In stock and ready to ship."
  </Accordion>

  <Accordion title="Productidentificatieblokken" icon="barcode">
    Voeg een gestandaardiseerd identificatieblok toe aan elke beschrijving met [Tekst toevoegen/voorvoegen](/nl/essentials/bulk-editing/append-prepend).

    ```
    \n\nIdentifiers: SKU {{product.sku}} | EAN {{product.ean}} | MPN {{product.mpn}}
    ```

    > "Identifiers: SKU SS-HB-M1050 | EAN 4006209000123 | MPN 77123-M10"
  </Accordion>

  <Accordion title="Besparingsmelding voor saleartikelen" icon="badge-percent">
    Verwijs naar de berekende besparingsvariabelen in promotiecontent.

    ```
    Save €{{product.savings}} ({{product.savings_percent}}% off): was €{{product.price}}, now €{{product.special_price}}
    ```

    > "Save €30.00 (23% off): was €129.99, now €99.99"
  </Accordion>

  <Accordion title="Seizoensgebonden content met datums" icon="calendar">
    Gebruik `{{current.season}}` en `{{current.year}}` direct in content of in [conditionele blokken](/nl/workflows/content-logic/conditional-blocks).

    ```
    {{product.brand}} {{current.season}} {{current.year}} Collection
    ```

    > "Nike Winter 2026 Collection"
  </Accordion>

  <Accordion title="Douane-info in exportsjablonen" icon="file-output">
    Haal HS-codes en herkomstdata direct in exportsjablonen.

    ```
    HS Code: {{product.hs_code}} | Origin: {{product.country_of_origin}} | Weight: {{product.weight}} {{product.weight_unit}}
    ```

    > "HS Code: 7318.15 | Origin: DE | Weight: 0.085 kg"
  </Accordion>
</AccordionGroup>

## Tips

* Standaardvariabelen worden automatisch bijgewerkt wanneer productdata verandert. Een prijsupdate stroomt door naar elke formule die `{{product.price}}` gebruikt.
* Combineer standaardvariabelen met [globale](/nl/workflows/content-logic/global-variables), [merk-](/nl/workflows/content-logic/brand-variables) en [categorievariabelen](/nl/workflows/content-logic/category-variables) voor rijkere content.

## Gerelateerd

<CardGroup cols={2}>
  <Card title="Productvariabelen" icon="variable" href="/nl/workflows/content-logic/product-variables">
    Bouw berekende variabelen uit standaardvelden en formules.
  </Card>

  <Card title="Globale variabelen" icon="globe" href="/nl/workflows/content-logic/global-variables">
    Definieer waarden die voor elk product hetzelfde blijven.
  </Card>

  <Card title="Conditionele blokken" icon="git-branch" href="/nl/workflows/content-logic/conditional-blocks">
    Toon andere content op basis van productgegevens.
  </Card>

  <Card title="Kanaalvariabelen" icon="split" href="/nl/workflows/content-logic/channel-variables">
    Geef content de juiste vorm per verkoopkanaal.
  </Card>
</CardGroup>
