Announcement

Collapse
No announcement yet.

hiding quantity pricing

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

    hiding quantity pricing

    We created some quantity based pricing for products.

    eg
    1-49 products = 35.00
    50 - 99 = 32.50
    100 or more = 30.00

    this is working fine. my only problem is that it has messed up the product layout. i now have all 3 prices showing in my layout. i would prefer to only show the 1st price.

    http://www.adxserver2.com/acatalog/E...fety_est_.html

    would like it to appear like:
    http://www.adxserver2.com/acatalog/B...st_Orange.html

    any ideas?

    thanks in advance
    Mark

    #2
    I did this as follows:

    created a new layout called "one price only"

    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PriceIsEnabled%22%20%2f%3e">
    <br />
    <span class="sectionLinkThis"><actinic:variable name="PreFormattedPrice" value="Product Price Including Tax" /></span>
    <br />
    </actinic:block>
    and placed this into a new layout list called "single price"

    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22ListIndex%22%20%2f%3e%20%20%3d%3d%201">
    	<actinic:variable name="PriceLayout" value="One Price Only" />
    </actinic:block>
    and placed that into the product layout.

    That essentially retains the functionality of the existing price list so you can use at will. The first lot of code strips out the crud and the second tells Actinic to look for the first price only.

    You may need to tweak to get it as you need (showing the tax status etc which I removed) but should start you in the right direction. Note the CSS class will need changing as this is my own declaration.


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      You can see it in operation at http://www.winecare.co.uk/acatalog/iso_glass_21cl.html

      The main ISO tasting glass product shows the price breaks but in the best sellers list (entitled you may also like) it only shows the one price.


      Bikster
      SellerDeck Designs and Responsive Themes

      Comment


        #4
        you are a star. thanks.

        thats a nice looking wine site too
        Mark

        Comment

        Working...
        X