Hallo OXID-Komjuniti,
auch nach stundenlanger Recherche im Forum und diversen Ansätzen finde ich keine Lösung hierfür.
Gibt es eine Möglichkeit OXID “interne” Seiten (also Warenkorb, Kontakt, etc…) in die horizontale Top-Navigation einzubauen? In den CMS-Seiten mit Ident “Kontakt” verbaut bringt es 'nen falschen Alias. Hardcoden würde auch gehen, allerdings nur wenn der aktuelle zustand mit gesetzt wird. Hat jemand ne Idee oder nochbesser eine Lösung ? thx Stefan
[{assign var="iCatCnt" value="1"}]
[{foreach from=$oxcmp_categories item=ocat key=catkey name=root}]
[{if $ocat->getIsVisible() }]
[{if $ocat->getContentCats()}]
[{foreach from=$ocat->getContentCats() item=ocont key=contkey name=cont}]
[{if $iCatCnt <= $oView->getTopNavigationCatCnt()}]
<!-- generiertes menu start -->
<li><a id="root[{$iCatCnt}]" href="[{$ocont->getLink()}]" [{if $ocont->expanded}]class="exp"[{/if}]>
<img src="[{$oViewConf->getImageUrl()}]top-navigation-[{$ocont->oxcontents__oxtitle->value}].png" title="Küchen-Schneidbrett | [{$ocont->oxcontents__oxtitle->value}]" alt="[{$ocont->oxcontents__oxtitle->value}]" height="60" width="60" />
<h1>[{$ocont->oxcontents__oxtitle->value}]</h1> </a></li>
<!-- generiertes menu end -->
[{/if}]
[{assign var="iCatCnt" value=$iCatCnt+1 }]
[{/foreach}]
[{/if}]
[{if $iCatCnt <= $oView->getTopNavigationCatCnt()}]
<li>
<a id="root[{$iCatCnt}]" href="[{$ocat->getLink()}]" [{if $ocat->expanded}]class="exp"[{/if}]>
<img src="[{$oViewConf->getImageUrl()}]top-navigation-[{$ocat->oxcategories__oxtitle->value}].png" title="[{$ocat->oxcategories__oxtitle->value}]" alt="[{$ocat->oxcategories__oxtitle->value}]" height="60" width="60" />
<h1>[{$ocat->oxcategories__oxtitle->value}]</h1> [{ if $ocat->getNrOfArticles() > 0}] ([{$ocat->getNrOfArticles()}])[{/if}]
</a>
[{if $ocat->getSubCats()}]
[{strip}]
<ul ><!--class="menue verticall dropdown"-->
[{foreach from=$ocat->getSubCats() item=osubcat key=subcatkey name=SubCat}]
[{if $osubcat->getContentCats()}]
[{foreach from=$osubcat->getContentCats() item=osubcont key=subcontkey name=subcont}]
<li><a id="test_Top_root[{ $iCatCnt }]_Cms_[{$smarty.foreach.SubCat.iteration}]_[{$smarty.foreach.subcont.iteration}]" href="[{$osubcont->getLink()}]">[{$osubcont->oxcontents__oxtitle->value}] </a></li>
[{/foreach}]
[{/if}]
[{if $osubcat->getIsVisible() }]
<li><a id="test_Top_root[{ $iCatCnt }]_SubCat_[{$smarty.foreach.SubCat.iteration}]" href="[{$osubcat->getLink()}]">[{$osubcat->oxcategories__oxtitle->value}] [{ if $osubcat->getNrOfArticles() > 0}] ([{$osubcat->getNrOfArticles()}])[{/if}] </a></li>
[{/if}]
[{/foreach}]
</ul>
[{/strip}]
[{/if}]
</li>
[{/if}]
[{assign var="iCatCnt" value=$iCatCnt+1 }]
[{/if}]
[{/foreach}]