Hallo,
das geht mit einem Ersetzer im /frontend_render/
Hier ein ganz einfaches Beispiel, wie so etwas gestrickt werden kann:
http://forum.phpwcms.org/viewtopic.php?p=110852#p110852
Oder so, die Bilderreihe ist eine Navigation bei denen die Navi für die Bilder 2 und 4 manipuliert worden ist.
http://www.auszeit.at/cms/
Dort steht so etwas in der Art (Ausschnitt):
Code: Select all
// Suche und ersetze Bild 02
$content["all"] = str_replace('<li id="li_id_2" class="sub_no"><a href="index.php?index"><span>Ebene02</span></a>',
'<li id="li_id_2" class="sub_no'.$my_new_class.'"><!-- nop //--><span>Bild</span>', $content["all"]);
// Suche und ersetze Bild 04
$content["all"] = str_replace('<li id="li_id_4" class="sub_no"><a href="index.php?index"><span>Ebene04</span></a>',
'<li id="li_id_4" class="sub_no'.$my_new_class.'"><!-- nop //--><span>Bild</span>', $content["all"]);
Knut