"Ordner" - Unsere Marken auf Startseite im Fußbereich löschen/ausblenden

Hallo,

etwas vermutlich sehr banales. Weiss leider oft auch nicht die richtigen Bezeichnungen/Begriffe.

Möchte im Shop 4.10.1 auf der Startseite die Rubrik “Unsere Marken” unten im Fußbereich nicht haben - wie bekomme ich die weg?

Danke.

LG

Übersetzung:

'OUR_BRANDS'                                                  => 'Unsere Marken',

application/views/flow/tpl/layout/footer.tpl

[{block name="dd_footer_manufacturerlist"}]
                                    <section class="col-xs-12 col-sm-3 footer-box footer-box-manufacturers">
                                        <div class="h4 footer-box-title">[B][{oxmultilang ident="OUR_BRANDS"}][/B]</div>
                                        <div class="footer-box-content">
                                            [{block name="dd_footer_manufacturerlist_inner"}]
                                                [{oxid_include_widget cl="oxwManufacturerList" _parent=$oView->getClassName() noscript=1 nocookie=1}]
                                            [{/block}]
                                        </div>
                                    </section>
                                [{/block}]

in

[{*block name="dd_footer_manufacturerlist"}]
                                    <section class="col-xs-12 col-sm-3 footer-box footer-box-manufacturers">
                                        <div class="h4 footer-box-title">[B][{oxmultilang ident="OUR_BRANDS"}][/B]</div>
                                        <div class="footer-box-content">
                                            [{block name="dd_footer_manufacturerlist_inner"}]
                                                [{oxid_include_widget cl="oxwManufacturerList" _parent=$oView->getClassName() noscript=1 nocookie=1}]
                                            [{/block}]
                                        </div>
                                    </section>
                                [{/block*}]

Danke - hat funktioniert.

LG

Danke für die Hilfe. Wie entferne ich die dadurch entstandene Lücke?

Wie immer: Dank im Vorraus.

Der neue Code muss so heißen:

[{*block name="dd_footer_manufacturerlist"}]
                                    <section class="col-xs-12 col-sm-3 footer-box footer-box-manufacturers">
                                        <div class="h4 footer-box-title">[{oxmultilang ident="OUR_BRANDS"}]</div>
                                        <div class="footer-box-content">
                                            [{block name="dd_footer_manufacturerlist_inner"}]
                                                [{oxid_include_widget cl="oxwManufacturerList" _parent=$oView->getClassName() noscript=1 nocookie=1}]
                                            [{/block}]
                                        </div>
                                    </section>
                                [{/block*}]

Albert