I did a little customer thing with the best sellers list on the front page show it would show every dog on the site that was for sale. Now some of the prices aren't showing in the list and I'm a little puzzled.
www.littlepuppiesonline.com
Here's the best sellers code:
Code:
{if $bestsellers}
{capture name=bestsellers}
<ul class="bestsellers-products-item">
{foreach from=$bestsellers item=bestseller}
<li>
{if $config.Bestsellers.bestsellers_thumbnails eq "Y"}
<a href="product.php?productid={$bestseller.productid}&cat={$cat}&bestseller=Y">{include file="product_thumbnail.tpl" productid=$bestseller.productid product=$bestseller.product tmbn_url=$bestseller.tmbn_url image_x=$car_tw image_y=$car_th}</a>
<div class="details">
<a class="product-title" href="product.php?productid={$bestseller.productid}&cat={$cat}&bestseller=Y">{$bestseller.product|escape}</a><br />
<br />
{$bestseller.descr}
<br /><br />
<span class="price">{$lng.lbl_our_price}:</span> <span class="price-value">{include file="currency.tpl" value=$bestseller.taxed_price}</span>
</div><br /><br />
<div class="clearing"></div>
{else}
<a class="product-title" href="product.php?productid={$bestseller.productid}&cat={$cat}&bestseller=Y">{$bestseller.product|escape}1</a><br />
<span class="price">{$lng.lbl_our_price}:</span> <span class="price-value">{include file="currency.tpl" value=$bestseller.taxed_price}</span>
{/if}
</li>
{/foreach}
</ul>
{/capture}
{include file="customer/dialog.tpl" title=$lng.lbl_bestsellers content=$smarty.capture.bestsellers}
{/if}
It appears that there's not a "value=$bestseller.taxed_price" for each dog. Is there a reason that the code wouldn't be picking this up?