Trippe
6. Februar 2020 um 12:12
1
Hallo,
die Breadcrumb-Navigation liegt im umschließenden Container content-main container block-group.
Ich möchte sie gerne darüber platzieren, mit folgender Änderung kann ich die Breadcrumb-Navigation an der gewünschten Position darstellen.
{extends file='parent:frontend/index/index.tpl'}
{block name="frontend_index_content_main"}
{block name='frontend_index_breadcrumb'}
{if count($sBreadcrumb)}
{block name='frontend_index_breadcrumb_inner'}
{include file='frontend/index/breadcrumb.tpl'}
{/block}
{/if}
{/block}
{$smarty.block.parent}
{/block}
Natürlich wird sie jetzt zweimal angezeigt, da sie ja noch im Ursprungstemplate an der gewohnten Stelle liegt.
Wie bekomme ich jetzt die „alte“ Breadcrumb entfernt?
Oder muss ich tatsächlich die komplette index.tpl ändern?
Gruß Michael
Am besten du überschreibst den Block frontend_index_content_main komplett ohne smarty.block.parent
{block name='frontend_index_content_main'}
{* Breadcrumb *}
{block name='frontend_index_breadcrumb'}
{if count($sBreadcrumb)}
{block name='frontend_index_breadcrumb_inner'}
{include file='frontend/index/breadcrumb.tpl'}
{/block}
{/if}
{/block}
{*hier war der Breadcrump vorher*}
{* Content top container *}
{block name="frontend_index_content_top"}{/block}
{* Sidebar left *}
{block name='frontend_index_content_left'}
{include file='frontend/index/sidebar.tpl'}
{/block}
{* Main content *}
{block name='frontend_index_content_wrapper'}
{block name='frontend_index_content'}{/block}
{/block}
{* Sidebar right *}
{block name='frontend_index_content_right'}{/block}
{* Last seen products *}
{block name='frontend_index_left_last_articles'}
{if $sLastArticlesShow && !$isEmotionLandingPage}
{* Last seen products *}
{s namespace="frontend/plugins/index/viewlast" name='WidgetsRecentlyViewedHeadline'}{/s}
{/if}
{/block}
{/block}
1 „Gefällt mir“
Trippe
6. Februar 2020 um 12:29
3
Danke!
Da stand ich wohl irgendwie auf dem Schlauch …
Trippe
6. Februar 2020 um 14:28
4
Ahhh verdammt …
Jetzt läßt sich die Cookie-Kofiguration nicht mehr aufrufen, Klick auf den Link Cookie-Einstellungen bleibt ohne Reaktion.
Das Javascript für den Warenkorb auf der gegenüberliegenden Seite funktioniert einwandfrei.
Was kann das sein?
Trippe
10. Februar 2020 um 06:44
5
Fehler gefunden, hatte wohl noch aus einer älteren index.tpl ohne Cookie Consent Manager kopiert.