Aktionen
GX-Bug #58914
geschlossenLeerer Bewertungscontainer in Kacheln wird auch dann angezeigt wenn Bewertungen deaktiviert sind
% erledigt:
100%
Geschätzter Aufwand:
Steps to reproduce:
Betroffene Versionen:
3.10.0.1
Release Notes Langtext:
Leerer Bewertungscontainer in Kacheln wird nicht mehr angezeigt wenn Bewertungen deaktiviert sind
Beschreibung
Der Div Container sollte verschwinden wenn Bewertungen aus sind, die Hierarchie der Verschachtlung stimmt aber nicht, die if condition ist eine Ebene zu tief.
/templates/Honeygrid/snippets/product_listing/product_grid_only.html
statt
{block name="snippets_product_listing_product_grid_only_description_rating"} <div class="rating-container hidden-list"> {if $showRating} <span{if $p_meta} title="{$p_meta}"{/if}> {if $OVERALL_RATING.rounded && $OVERALL_RATING.rounded != ""} {include file="get_usermod:{$tpl_path}snippets/rating_stars.html" rating_rounded=$OVERALL_RATING.rounded rating_count=$OVERALL_RATING.count } {/if} </span> {/if} </div> {/block}
muss es sein:
{block name="snippets_product_listing_product_grid_only_description_rating"} {if $showRating} <div class="rating-container hidden-list"> <span{if $p_meta} title="{$p_meta}"{/if}> {if $OVERALL_RATING.rounded && $OVERALL_RATING.rounded != ""} {include file="get_usermod:{$tpl_path}snippets/rating_stars.html" rating_rounded=$OVERALL_RATING.rounded rating_count=$OVERALL_RATING.count } {/if} </span> </div> {/if} {/block}
Zugehörige Tickets
Aktionen
#1
Von Torben Wark vor etwa 6 Jahren aktualisiert
- Kopiert von GX-Bug #58909: Leerer Bewertungscontainer in Kacheln wird auch dann angezeigt wenn Bewertungen deaktiviert sind wurde hinzugefügt
Aktionen
#2
Von Moritz Bunjes vor etwa 6 Jahren aktualisiert
- Zugewiesen an wurde von Core-Entwickler zu Moritz Bunjes geändert
Aktionen
#3
Von Moritz Bunjes vor etwa 6 Jahren aktualisiert
- Status wurde von Testing zu Erledigt geändert
- % erledigt wurde von 0 zu 100 geändert
Aktionen