Announcement

Collapse
No announcement yet.

From Price for Best Sellers list. Qty Pricing

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

    From Price for Best Sellers list. Qty Pricing

    http://www.plaintshirts.co.uk/

    I had the above website designed for me a while back, unfortunately i've only just noticed that the 'from price' on the best sellers list on the home page is wrong. There are 3 quantity prices for each product and this is displaying the highest price not the lowest. i.e not the from price.

    Is there a quick fix to this?
    Business Plus V9.0.5
    Windows 7 Home Premium

    #2
    Jont posted some code on the forum to do this about a year or so back, have a search see if you can find that, it replaced the messy prices with a 'from' price which used the lowest price in the range.

    Comment


      #3
      http://community.actinic.com/showthr...t=30435&page=2

      Just implemented this onto a site and thought I would share.

      If your product features price bands these will display at the section level which can be untidy. To display the lowest price only :

      <actinic:block type="ProductList" >
      <actinic:block type="PriceList" >
      <actinic:block php="true" >
      $pricecount="<actinic:variable name="ListCount" />";
      if ($pricecount=="<actinic:variable name="ListIndex" />")
      echo "Prices from <actinic:variable name="PreFormattedPrice" value="Product Price Excluding Tax" /> +VAT";
      </actinic:block>
      </actinic:block>
      </actinic:block>

      This will display a single line eg:

      Prices from £1.99 +VAT .. where 1.99 is the lowest price in your product matrix.

      Hope that may be of use to someone
      I eventually found this post by Jont. Is this the one? Is just a matter of copy/paste this code.. somewhere??
      Business Plus V9.0.5
      Windows 7 Home Premium

      Comment


        #4
        That's the one, woohoo my memory still works.

        Comment

        Working...
        X