Is there a way to show the "each" price and the "extended price" in the mini basket like it is on the Basket page?
Change to:
Each: $x.xx Price: $x.xx
instead of
Price: $x.xx (which is really the each price)
Thanks
Extended price in Mini Basket
Re: Extended price in Mini Basket
Locate the following code in the ConLib/MiniBasket.ascx file
and make it look like
Code: Select all
<span class="miniBasketPriceLabel">Price: </span>
<span class="miniBasketPrice"><%# Eval("Price", "{0:ulc}") %></span>
Code: Select all
<span class="miniBasketPriceLabel">Each: </span>
<span class="miniBasketPrice"><%# Eval("Price", "{0:ulc}") %></span>
<span class="miniBasketPriceLabel">Price: </span>
<span class="miniBasketPrice"><%# Eval("ExtendedPrice", "{0:ulc}") %></span>
-
- Lieutenant (LT)
- Posts: 58
- Joined: Thu Jun 21, 2007 8:27 pm
Re: Extended price in Mini Basket
I followed that advice and it got me part way to where I want to go. I need to show the discount extended price. Is there an easy way to get that in the minibasket?
My client doesn't like the original cart where it shows the discount as a separate line, he wants it to show the final price for each item after the quantity discount and the subtotal after all discounts. Is there a quick way to implement that?
I'm a programmer so I'm sure I can make it work, I was just wondering if someone has already done it or if I'm missing a really easy method.
My client doesn't like the original cart where it shows the discount as a separate line, he wants it to show the final price for each item after the quantity discount and the subtotal after all discounts. Is there a quick way to implement that?
I'm a programmer so I'm sure I can make it work, I was just wondering if someone has already done it or if I'm missing a really easy method.