mzanier Posted August 6, 2013 Author Report Share Posted August 6, 2013 Mann kann nirgends einstellen das ein content nur auf der startseite angezeigt werden soll, das muss man im template direkt abfragen. Der gepostete code lädt den content immer. Link to comment Share on other sites More sharing options...
TiGa88 Posted August 6, 2013 Report Share Posted August 6, 2013 Guten Morgen! Danke für die Antwort. Leider weiß ich nun nicht genau, was mit "im Template selbst abfragen" gemeint ist. Soll ich den Text in HTML-Form in irgendeiner Quellcode-Datei einfügen oder muss ich einen anderen Code finden, mit dessen Hilfe ich den Content nur auf der Startseite einfügen kann? Viele Grüße TiGa88 Link to comment Share on other sites More sharing options...
mzanier Posted August 6, 2013 Author Report Share Posted August 6, 2013 dieses hier einfügen {if $page eq 'index'} {$content} {content block_id=14} {if $_content_14|count > 0} {foreach name=aussen item=box_data from=$_content_14} {$box_data.content_body} {/foreach} {/if} Link to comment Share on other sites More sharing options...
TiGa88 Posted August 6, 2013 Report Share Posted August 6, 2013 Hallo! Danke, damit komme ich jetzt schon mal weiter. Allerdings zeigt er nun auf den Kategorie-Seiten keine Inhalte mehr an. Ich vermute mal, weil ich ihm jetzt in der gesamten Code-Zeile nur gesagt habe, "if startseite".. ? So sieht es aus: <div id="content"> {if $page eq 'index'} {$content} {content block_id=16} {if $_content_16|count > 0} {foreach name=aussen item=box_data from=$_content_16} {$box_data.content_body} {/foreach} {/if} {/if} </div> Link to comment Share on other sites More sharing options...
TiGa88 Posted August 6, 2013 Report Share Posted August 6, 2013 Okay. Ich hatte wohl einen Dreher drin und den normalen Content ausgeschlossen. Sorum hat es funktioniert: {$content} {if $page eq 'index'} {content block_id=16} {if $_content_16|count > 0} {foreach name=aussen item=box_data from=$_content_16} {$box_data.content_body} {/foreach} {/if} {/if} Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.