NUR Cms Seiten im Topmenü

Hallo zusammen,

ich habe im Azure-Template die Sidebar so umgebaut, dass sie mir alle Kategorien aufgeklappt auf der linken Seite anzeigt.

Da ich jetzt oben (topcategories.tpl) platz habe, möchte ich da CMS-Seiten einbinden (Kundeninformationen, Versandinformationen, etc.).
Mein Problem ist, dass die Hauptkategorien nicht mehr angezeigt werden sollen d.H. die Top-Navigation sollte ungefähr so sein:

STARTSEITE VERSANDINFORMATIONEN CMS-SEITE CMS-SEITE

Im Forum hab ich nichts dazu gefunden…
Hab mir die topcategories.tpl angeschaut und ein experimentiert, blicke aber überhaupt nicht durch…

Vielleicht kann mir von euch jemand helfen.

Vielen Dank schonmal

Markus


Hi all,

i have modified the Azure-template sidebar that it shows the whole navigation expanded on the left side.

Instead of the Topmenu including all categories i want ONLY Cms-pages visible.
I´ve searched the forum but couldn´t find anything that helps me…

The Topmenu should be something like this:

START SHIPPING INFORMATION CMS-SITE CMS-SITE

I have tried to modify topcategories.tpl but i had no success…

Maybe someone knows what to do…

Thanks in advance

Markus

leg doch einfach ne hauptakategorie an mit nem externen link zu deiner cms seite

Why not use the included menu-function?

You can just tick “Main Menu” instead of snippet when creating a CMS-Page

load that with:

[{if $oView->getMenueList()}]
[{foreach from=$oView->getMenueList() item=oMenueContent }]
  <a href="[{ $oMenueContent->getLink() }]">[{$oMenueContent->oxcontents__oxtitle->value}]</a>
[{/foreach}]
[{/if}]

Alternatively you can use oxgetseourl to manually set up your menu with idents


<a href="[{ oxgetseourl ident="myident" type="oxcontent" }]">My Link</a></li>

Or use oxifcontent to set it up manually


[{oxifcontent ident="myident" object="oCont"}]
  <a href="[{ $oCont->getLink() }]">[{ $oCont->oxcontents__oxtitle->value }]</a>
[{/oxifcontent}]

Moin,

es kann in Deutsch weitergehen: hab den Beitrag aus dem internationalen Forum hierher verschoben :wink:

Gruß

so wie aritark das beschrieben hat wird es gehen - leider nicht mit der eingebauten Funktion die CMS-Seite als quasi Hauptkategorie in der oberen Navigation anzuzeigen - weil man die Sortierung leider nur vor eine sichtbare Produktkategorie einstellen kann

https://bugs.oxid-esales.com/view.php?id=4266

Hallo und erstmal danke für eure Antworten!

Da ich noch kein Experte in Sachen Smarty bin - die Funktionen von aritark erstellen mir ein eigenes “Topmenü” wo nur Links zu CMS-Seiten angezeigt werden, diese werden allerdings nicht angezeigt, weil keine “gültige” Produktkategorie vorhanden ist.

Verstehe ich das so richtig?

Wenn ja, muss ich mir was anderes überlegen…

Aber vielen Dank für eure Hilfe