Hallo zusammen,
ich stehe auf dem Schlauch. In einem Subshop wird der Grundpreis im Ajax-Warenkorb doppelt angezeigt, ich verstehe nicht wieso? Ich habe unter " Grundeinstellung/Storefront/Bestellabschluss" nur folgendes stehen:
{if $sBasketItem.additional_details.properties}
{$sBasketItem.additional_details.properties}
{elseif $sBasketItem.additional_details.description}
{$sBasketItem.additional_details.description}
{else}
{$sBasketItem.additional_details.description_long|strip_tags|truncate:50}
{/if}
Also nichts mit Grundpreis, was das versursachen könnte.
Die ajax_cart_item.tpl enthält folgendes:
{extends file="parent:frontend/checkout/ajax_cart_item.tpl"}
{block name="frontend_checkout_ajax_cart_articlename_price"}
{$smarty.block.parent}
{if count($basketItem.additional_details.prices) > 0 && $basketItem.additional_details.prices[0].referenceprice}{assign var="price" value=$basketItem.additional_details.prices[0]}
Inhalt: {$sBasketItem.purchaseunit|string_format:"%.2f"} {$sBasketItem.itemUnit}
(Grundpreis: {$price.referenceprice|currency}* / {$price.referenceunit} {$price.sUnit.unit})
{/if}
{/block}
Lösche ich die ajax_cart_item.tpl, aus dem Theme-Ordner vom Subshop, dann wird der Grundpreis im Ajax-Warenkorb nur einmal angezeigt. Da in dem Theme-Ordner vom Hauptshop aber die ajax_cart_item.tpl auch vorhanden ist, ebenso wie im zweiten Subshop (und dort natürlich keine Probleme mit doppelt angezeigtem Grundpreis auftreten) stimmt doch etwas nicht.
Hat jemand eine Idee? ich meine das Problem schonmal gehabt und gelöst zu haben, kann mich aber beim besten willen nicht mehr an die Lösung erinnern