Hallo :)
Einleitung
Versionswechseln bringen meist Änderungen am Azure Template mit sich.
Beispiel:
Versionswechsel von OXID CE 4.6.6 nach OXID CE 4.7.0. In diesem Versionswechsel gab es eine Änderung in der Template Datei listitem_grid.tpl beim Methoden Aufruf getFPrice(). Dort kamen einige Abfragen von Methoden Bedingungen hinzu für Variantenartikel, welche hinzugefügt wurden.
OXID CE 4.6.6 listitem_grid.tpl Ausschnitt
OXID CE 4.7.0 listitem_grid.tpl Ausschnitt
Wo finde ich diese Änderung dokumentiert? Evtl. im Idealfall mit Beschreibung warum sich dies geändert hat.
Viele Grüße aus Berlin
indianer3c
Einleitung
Versionswechseln bringen meist Änderungen am Azure Template mit sich.
Beispiel:
Versionswechsel von OXID CE 4.6.6 nach OXID CE 4.7.0. In diesem Versionswechsel gab es eine Änderung in der Template Datei listitem_grid.tpl beim Methoden Aufruf getFPrice(). Dort kamen einige Abfragen von Methoden Bedingungen hinzu für Variantenartikel, welche hinzugefügt wurden.
OXID CE 4.6.6 listitem_grid.tpl Ausschnitt
PHP Code:
[{block name="widget_product_listitem_grid_price_value"}]
[{if $product->getFPrice()}]
<strong><span>[{ $product->getFPrice() }]</span> [{ $currency->sign}] [{if !($product->hasMdVariants() || ($oViewConf->showSelectListsInList() && $product->getSelections(1)) || $product->getVariantList())}] *[{/if}]</strong>
[{/if}]
[{/block}]
PHP Code:
[{block name="widget_product_listitem_grid_price_value"}]
[{if $product->getFPrice()}]
<strong><span>
[{if $product->isRangePrice()}]
[{ oxmultilang ident="PRICE_FROM" }]
[{if !$product->isParentNotBuyable() }]
[{ $product->getFMinPrice() }]
[{else}]
[{ $product->getFVarMinPrice() }]
[{/if}]
[{else}]
[{if !$product->isParentNotBuyable() }]
[{ $product->getFPrice() }]
[{else}]
[{ $product->getFVarMinPrice() }]
[{/if}]
[{/if}]
</span> [{ $currency->sign}]
[{if $oView->isVatIncluded() }]
[{if !($product->hasMdVariants() || ($oViewConf->showSelectListsInList() && $product->getSelections(1)) || $product->getVariants())}] *[{/if}]</strong>
[{/if}]
[{/if}]
[{/block}]
Viele Grüße aus Berlin
indianer3c