Warenkorb in Sidbar-Box

Hallo zusammen,

warum zeigt der mir den Einzelpreis nicht mit in der Box an? Was habe ich vergessen? (siehe Bild) Danke für eure Hilfe.

[{if $oxcmp_basket->getProductsCount()}]
[{oxhasrights ident=“TOBASKET”}]
<div class=“box”>
<h2>
[{ oxmultilang ident=“WIDGET_SERVICES_BASKET” }]
</h2>

        &lt;div class="content"&gt;
            [{assign var="currency" value=$oView-&gt;getActCurrency() }]
            [{foreach from=$oxcmp_basket-&gt;getContents() name=miniBasketList item=_product}]
                [{ assign var="minibasketItemTitle" value=$_product-&gt;getTitle() }]
                &lt;div style="width: 100px"&gt;
                    &lt;a href="[{$_product-&gt;getLink()}]" title="[{ $minibasketItemTitle|strip_tags }]"&gt;[{ $minibasketItemTitle|strip_tags }]&lt;/a&gt;
                &lt;/div&gt;
                &lt;div style="float: right"&gt;
                    &lt;span class="item" style="white-space: nowrap"&gt;
                    [{if $_product-&gt;getAmount() gt 1}]
                        [{$_product-&gt;getAmount()}] x
                    [{/if}]
                    &lt;/span&gt;
                    &lt;strong class="price" style="white-space: nowrap"&gt;[{$_product-&gt;getFTotalPrice()}] [{ $currency-&gt;sign}]&lt;/strong&gt;
                &lt;/div&gt;
                &lt;div  style="clear: both; border-bottom: 1px dotted #333; margin-bottom: 3px"&gt;&lt;/div&gt;
            [{/foreach}]
            
            &lt;span class="item"&gt;[{ oxmultilang ident="WIDGET_MINIBASKET_TOTAL" }]&lt;/span&gt;
            &lt;div style="float: right"&gt;
                &lt;strong class="price" style="white-space: nowrap"&gt;[{ $oxcmp_basket-&gt;getFProductsPrice()}] [{ $currency-&gt;sign}]&lt;/strong&gt;
            &lt;/div&gt;
            
            &lt;hr&gt;
            &lt;a style="white-space: nowrap" href="[{ oxgetseourl ident=$oViewConf-&gt;getSelfLink()|cat:"cl=basket" }]" class="submitButton largeButton"&gt;[{ oxmultilang ident="WIDGET_MINIBASKET_DISPLAY_BASKET" }]&lt;/a&gt;
        &lt;/div&gt;
    &lt;/div&gt;
[{/oxhasrights}]

[{/if}]

Hat keiner eine Idee?

schau Dir doch nochmal das originale Template an - in dem Teil hier finde ich zwar den gesamtpreis, aber der Einzelpreis steht definitiv nicht drin

<div style="width: 100px">
 <a href="[{$_product->getLink()}]" title="[{ $minibasketItemTitle|strip_tags }]">[{ $minibasketItemTitle|strip_tags }]</a>
 </div>
 <div style="float: right">
 <span class="item" style="white-space: nowrap">
 [{if $_product->getAmount() gt 1}]
 [{$_product->getAmount()}] x
 [{/if}]
 </span>
 <strong class="price" style="white-space: nowrap">[{$_product->getFTotalPrice()}] [{ $currency->sign}]</strong>
 </div>

hab’s hier geändert: http://forum.oxid-esales.com/showthread.php?t=14655&page=2#post92877

VIELEN vielen Dank für die Hilfe:-)