Wie kann man den Filterbereich in Kategorielistings oder Suchergebnisseiten standardmäßig AUSGEKLAPPT anzeigen lassen?
Shopware 5.1.4
Theme: Responsiv
Wie kann man den Filterbereich in Kategorielistings oder Suchergebnisseiten standardmäßig AUSGEKLAPPT anzeigen lassen?
Shopware 5.1.4
Theme: Responsiv
Ich hab in meinem Template die
frontend/listing/actions/action-filter-panel.tpl
angelegt mit folgendem Inhalt
{extends file='parent:frontend/listing/actions/action-filter-panel.tpl'}
{* Filter options which will be included in the "listing/listing_actions.tpl" *}
{namespace name="frontend/listing/listing_actions"}
{block name='frontend_listing_actions_filter'}
{if $facets|count > 0}
{* 20.10.2015 is--collapsed hinzugefügt*}
{block name='frontend_listing_actions_filter_close_button'}
{s name="ListingActionsCloseFilter"}{/s}
{/block}
{block name='frontend_listing_actions_filter_container'}
{block name="frontend_listing_actions_filter_active_filters"}
{/block}
{block name='frontend_listing_actions_filter_form'}
{block name="frontend_listing_actions_filter_submit_button"}
{s name="ListingFilterApplyButton"}{/s}
{/block}
{block name="frontend_listing_actions_filter_form_page"}
{/block}
{block name="frontend_listing_actions_filter_form_search"}
{if $term}
{/if}
{/block}
{block name="frontend_listing_actions_filter_form_sort"}
{if $sSort}
{/if}
{/block}
{block name="frontend_listing_actions_filter_form_perpage"}
{if $criteria->getLimit()}
{/if}
{/block}
{block name="frontend_listing_actions_filter_form_category"}
{if !$sCategoryContent && $sCategoryCurrent != $sCategoryStart}
{/if}
{/block}
{block name="frontend_listing_actions_filter_form_facets"}
{include file="frontend/listing/actions/action-filter-facets.tpl" facets=$facets}
{/block}
{/block}
{/block}
{/if}
{/block}