Modify ↓
#995 closed Bug/Fehler (fixed)
Fehler in table_listing.html responsive Templates
| Reported by: | Ronald Parcinski | Owned by: | Markus Rehm |
|---|---|---|---|
| Priority: | hoch | Milestone: | modified-shop-2.0.1.0 |
| Component: | Template | Version: | 2.0.1.0 |
| Keywords: | Cc: | ||
| Blocked By: | Blocking: |
Description
Diese Zeile Code ist problematisch, da die FullPrice Anzeige nur funktioniert wenn es nur eine Option gibt.
{if $item_data.FULL_PRICE}<span class="options_selection_price">{$item_data.FULL_PRICE}</span>{elseif $item_data.PRICE}<span class="options_selection_price">{$item_data.PREFIX}{$item_data.PRICE}</span>{/if}
Entweder FullPrice Abfrage entfernen oder die Abfrage mit count =1 auf das $options Array erweitern
Attachments (0)
Note:
See TracTickets
for help on using tickets.

Möglicher Fix:
{if $item_data.FULL_PRICE && $options|count == 1}