Prints the weight of a shopping cart product.

Kuvaus

The tag works in the shopping cart product listing created with the {CartProducts} tag.

The weight must be defined in the product or product variation details; otherwise the tag won't print anything. The weight is primarily printed based on the product variation details and secondarily on the product details.

Syntaksi

{CartProductWeight( decimalsep: string, format: string, unit: boolean )}

Näkyvyys

Toimii näkyvyydessä: ostoskorituote

You can use the tag in the helper attribute of the {CartProducts} tag.

Attribuutit

decimalsep:

Defines the decimal separator character. The most popular decimal separators are comma and dot, the use of which depends on the store's locale.

Sallitut arvot: merkki, joka toimii desimaalierottimena (esim. desimaalipilkku = decimalsep: ','). Oletusarvo piste.
format:

Determines the unit of weight to be printed (grams or kilograms).

By default, the tag prints weight in grams if the weight is less than 1 kilogram. Otherwise, weight is printed in kilograms.

Sallitut arvot:
  • 'grams': the weight is always printed in grams
  • 'kilograms': the weight is always displayed in kilograms
unit:

Defines whether the unit of measurement is printed with the numerical value.

Sallitut arvot: true/false. Default value: true.

before/after:

With the before and after attributes, you can define content that is output before or after the content produced by the tag.

Allowed values: text that may contain HTML and Interface markup.

E.g.

  • before: '<p>This markup appears before the tag's own content.</p>'.
  • after: '<p>This appears after the tag's own content.</p>'

If the tag does not produce any content, the content of the before and after attributes will also not be displayed.

escape:

Adds an escape character before quotation marks in the output. The attribute makes it easier to process the tag-produced content when using JavaScript.

Allowed values: true/false. The default value is false.

or:

Defines alternative content that is displayed if the tag itself does not produce any content.

Allowed values: text that may contain HTML and Interface markup.

E.g. or:'Content not found.'