Announcement

Collapse
No announcement yet.

Product Options advice please

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

    Product Options advice please

    Hi All.
    Amongst other things I sell shoes on my website and as you no doubt know, childrens sizes are exclusive of VAT and therefore cheaper than the adult sizes.

    I would like some advice on an effective way to present this.

    Would you reccomend a seperate childrens section?

    In options I can add a extra amount for the adult sizes but is there some way I can avoid the smaller sizes showing in the size options as +£0.00 , which I think looks fussy but will still show the bigger adult sizes as +£5.00? Assuming I put the lower childrens price in the price box first of course.

    I would welcome some input on how others tackle the different prices and sizes so its easy to navigate and looks uncluttered.

    Thanks

    #2
    You can tell Actinic to exempt a product from VAT in the Details Tab, but you would have to split the Kids and Adult Sizes to use this option.

    Army Gore-tex
    Winter Climbing Mitts
    webD's Blog: Website design, SEO and other ramblings…
    Twitter LinkedIN

    If you think a post is good, rate it!

    Find the answers in the Knowledge Base | Have you read the User Guides

    Comment


      #3
      is there some way I can avoid the smaller sizes showing in the size options as +£0.00
      It will depend what Layout you're using for the Permutation / Layout / Permutation / Retail Price Layout. If it was Additional Price, then replacing that layout with:
      Code:
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PermutationAssociatedPricesAreUsed%22%20%2f%3e%20%3d%3d%20FALSE" >
      	<actinic:block if="%3cactinic%3avariable%20name%3d%22PermutationPriceRaw%22%20%2f%3e%20%21%3d%200">
      		+<actinic:block PHP='true' SELECTABLE='false'>formattedcurrency(<actinic:variable name="PermutationPriceRaw" />, <actinic:variable name="CurrencyDigits" />, '<actinic:variable name="MoneyDecimalSeparator" />', '<actinic:variable name="MoneyThousandSeparator" />', '<actinic:variable name="DefaultCurrency" />');</actinic:block>
      	</actinic:block>
      </actinic:block>
      <actinic:block if="%3cactinic%3avariable%20name%3d%22PermutationAssociatedPricesAreUsed%22%20%2f%3e" />
      	<actinic:block if="%3cactinic%3avariable%20name%3d%22AssociatedProduct%3a%3aProductPriceRaw%22%20%2f%3e%20%21%3d%200">
      		+<actinic:block PHP='true' SELECTABLE='false'>formattedcurrency(<actinic:variable name="AssociatedProduct::ProductPriceRaw" />, <actinic:variable name="CurrencyDigits" />, '<actinic:variable name="MoneyDecimalSeparator" />', '<actinic:variable name="MoneyThousandSeparator" />', '<actinic:variable name="DefaultCurrency" />');</actinic:block>
      	</actinic:block>
      </actinic:block>
      Will inhibit the price display if it's 0.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment

      Working...
      X