Hi
The site with the problem is: http://www.bulow-duus.dk
Can anyone tell me why my minicart doesn't update all 4 links, when I put an item in the cart.
Only two of the links goes to the cart page (indkoebskurv) while the others ("Tjek ud" and the image) still goes to card-empty page (indkoebskurv-tom)
If I clear the cache or refresh the site after putting an item in the cart all the link works fine.
My if statement looks like this:
<div id="kurv"><!--@If(Ecom:Order.IsEmpty="true")-->
<a href="Default.aspx?ID=26"><img src="/files/System/bulow/gfx/kurv.png" width="42" height="42"></a>
<div id="minVogn"><a href="Default.aspx?ID=26">Indkøbskurv</a> <!--<p>Din kurv er tom</p>--><a class="varePris" href="Default.aspx?ID=26">Din kurv er tom</a></div>
<div id="tjekUd"><a href="Default.aspx?ID=26">Tjek Ud</a></div><!--@EndIf(Ecom:Order.IsEmpty="true")-->
<!--@If(Ecom:Order.IsEmpty!="true")-->
<a href="Default.aspx?ID=23"><img src="/files/System/bulow/gfx/kurv.png" width="42" height="42"></a>
<div id="minVogn"><a href="Default.aspx?ID=23">Indkøbskurv</a> <a class="varePris" href="Default.aspx?ID=23"><!--@Ecom:Order.OrderLines.TotalProductQuantity--> vare(r) <!--@Ecom:Order.Price.Price--> <!--@Ecom:Order.Price.CurrencyCode--></a> </div>
<div id="tjekUd"><a href="Default.aspx?ID=23">Tjek Ud</a></div><!--@EndIf(Ecom:Order.IsEmpty!="true")-->
</div>
Thanks
-Jesper