Announcement

Collapse
No announcement yet.

Adding a FREE carriage icon automatically to a product?

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

    Adding a FREE carriage icon automatically to a product?

    Hi

    Is it possible to write code that basically inserts a Free Shipping image into a product in a fixed position if the price variable is greater than £50?

    If anyone has any idea how we can do this that would be great

    Mark

    #2
    Try a simple blockif containing

    ProductPriceRaw > 50

    around an image tag.
    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22ProductPriceRaw%22%20%2f%3e%20%3e%2050">
    	<img src="freeshipping.jpg" />
    </actinic:block>
    And keep freeshipping.jpg in the root of your Site folder.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Big Thank you

      Hi Norman,

      Thank you very much for your help.
      It works great.

      regards
      Mark

      Comment

      Working...
      X