Prints the product's list price, that is, the original price, which does not take campaign discounts into account.

Description

The tag doesn't print anything if no campaign discounts apply to the price.

Syntax

{ProductComparePrice}

Scope

Required scope: tuote

The required scope is always set in the following templates:

Templates
Single product template
Product images

Displaying prices on product pages

This example illustrates how to display the product's selling and list price on the product page. The code comes from the Barebones theme.

...
<p class="Text-Large ProductPrices ProductCardPrices">
    {ProductComparePrice(
        currencysymbol: 'true',

        <!-- If the price is discounted, the selling price will be displayed before the list price with the {ProductPrice} tag. -->
        before: '
            {ProductPrice(
                currencysymbol: 'true',
                before: '<span class="ProductDiscountPrice">{%Price}&nbsp;',
                after: '</span>'
            )}
            <span class="ProductComparePrice">',
        after: '</span>',

        <!-- If the price isn't discounted, the list price will be displayed with the {ProductPrice} tag. -->
        or: '
            {ProductPrice(
                currencysymbol: 'true',
                before: '<span class="ProductCurrentPrice">{%Price}&nbsp;',
                after: '</span>'
            )}'
    )}
</p>
...

The price is displayed with the strikethrough by using the CSS styles included in the Barebones theme.

Attribuutit

after/before:

By using the after and before attributes you can define content that is output either after or before the tag's output.

Allowed values:The HTML and Interface markup

E.g.

  • before: '<p>Tämä merkkaus näkyy ennen tagin omaa sisältöä.</p>'
  • after: '<p>Tämä taas näkyy tagin oman sisällön jälkeen.</p>'

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

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:The HTML and Interface markup

E.g. or:'Sisältöä ei löytynyt.'