Product Price

In your product layout HTML you would need to find where you want the product price to be displayed.

You can replace the price with the ShopSite tags for the product price including the sale price option.

    [-- IF PRODUCT.DisplayPrice --]
      [-- IF PRODUCT.SaleAmount --]
        <strike>[-- PRODUCT.Price --]</strike> <b>[-- PRODUCT.SaleAmount --]</b>
      [-- ELSE --]
        [-- PRODUCT.Price --]
      [-- END_IF --]
    [-- END_IF --]
Next: Product Graphic