Announcement

Collapse
No announcement yet.

How can I set up a product where the price is on application?

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

    How can I set up a product where the price is on application?

    Set up your product with £0.00 price. This will stop the price prompt from displaying on the website. Also make sure that the product is excluded from shipping costs ('Details' panel of the product details) so that they are not charged for shipping for getting the quote.

    Add a component to your product and call it 'Price on Application'. You can then style the text that appears by adding some conditions to your component layout, for example:

    * go to the 'Design' menu and select 'Library'
    * on the 'Layouts' tab locate your component layout (check on the 'layout' panel of the component as to which one it is using)
    * look for the variable 'ComponentDisplayLabel'
    * replace it with:

    <actinic:block if="%3cactinic%3avariable%20name%3d%22ComponentName%22%20%2f%3e%20%3d%3d%20%22Price%20on%20Application%22" ><span style="font-size: 25px; font-weight: bold;"></actinic:block><Actinic:Variable Name="ComponentDisplayLabel"/><actinic:block if="%3cactinic%3avariable%20name%3d%22ComponentName%22%20%2f%3e%20%3d%3d%20%22Price%20on%20Application%22" ></span></actinic:block>

    * the condition here will only apply the style if the 'Component Name' is 'Price on Application', so any other components won't be affected. Change the styling as required.
Working...
X