Announcement

Collapse
No announcement yet.

How do I change the appearance of the prices for logged in customers?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How do I change the appearance of the prices for logged in customers?

    Within 'Site Options | Layout | Product' there is a drop down list called 'Price Layout for Online Customer Prices'. You can use this setting to set whether customer account prices are shown including or excluding tax.

    To edit the code of these layouts go to 'Design | Library | Layouts' and expand the 'Prices for Customer Accounts' group. These layouts look different from standard layouts, and all the tags you'll see within them are explained below:

    <Actinic:RetailPrices>...</Actinic:RetailPrices>
    Marks the start and end of the 'Retail Price' bit

    <Actinic:CustomerPrices>...</Actinic:CustomerPrices>
    Marks the start and end of the 'Your Price' bit

    <Actinic:PriceDescription />
    Becomes the prompt e.g. 'Retail Price' or 'Your Price'

    <Actinic:TaxExclusivePrice />
    Becomes the price (excluding tax)

    <Actinic:TaxInclusivePrice />
    Becomes the price (including tax)

    <Actinic:QuantityApplies>...</Actinic:QuantityApplies>
    Marks the beginning and the end of the quantity-dependent pricing message

    <Actinic:QuantityDescription />
    Becomes the quantity-dependent pricing message (e.g. 'x or fewer', 'between x and y', etc)

    <Actinic:TaxesApply>...</Actinic:TaxesApply>
    Marks the beginning and end of the tax message

    <Actinic:TaxMessage />
    Becomes the tax message e.g. 'VAT at 17.5%'

    You can't check changes to this in preview mode - you can only check them by publishing your changes and logging in.
Working...
X