Prints the product bundle's discount price and comparison price.
Kuvaus
You can also print the discount price using the tag {BundlePrice} and the comparison price using the tag {BundleComparePrice}.
The prices are printed as a <dl> list. The output cannot be formatted. To format the price output, use the price tags mentioned above.
Syntaksi
{BundlePrices( includetax: boolean, price_format: string )}Näkyvyys
Toimii näkyvyydessä: tuotepaketti
The required scope is always set in the following templates:
| Templates |
|---|
| Product bundle |
Attribuutit
includetax:Determines whether the tag prints the price including VAT.
Allowed values: true/false. Default value: true.
price_format:Determines the price information display format.
Sallitut arvot:- string (default): The price information is printed as a string, which may also include formatting and additions dependent on other attributes of the tag (e.g., currency symbol).
- decimal: The price information is printed as a decimal number using a decimal point (e.g., 9.90), which works in, among other things, JavaScript code.
If
price_format:'decimal' is in use, other price information formatting attributes do not affect the tag's output.
before/after:With the
beforeandafterattributes, 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
beforeandafterattributes 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.'
