Seite 2 von 2

Verfasst: 06.10.2004 13:18
von Tyson
Möchte es gerne nur anschauen. Ist aber nicht dringend. :lol:

Verfasst: 06.10.2004 13:20
von Markus67
Hi ...

hier kannst du schauen .. aber viel zu sehen gibts da eigentlich nicht ... :wink:

Regeln

Markus

Verfasst: 06.10.2004 15:04
von Garfield312
Ich hab mir das ganz einfach gemacht und die in die FAQ eingebaut.

Du brauchst nur die Datei

phpbb_root\language\lang_faq.php

mit dem Editor zu öffnen, und da kannst du dir dann schön neue Punkte einbauen, und das sieht find ich klasse aus.

Steht auch schon dadrin :
//
// To add an entry to your FAQ simply add a line to this file in this format:
// $faq[] = array("question", "answer");
// If you want to separate a section enter $faq[] = array("--","Block heading goes here if wanted");
// Links will be created automatically
//
// DO NOT forget the ; at the end of the line.
// Do NOT put double quotes (") in your FAQ entries, if you absolutely must then escape them ie. \"something\";
//
// The FAQ items will appear on the FAQ page in the same order they are listed in this file
//
Also, an die Stelle, wo du ne Überschrift haben willst, setzt du :

Code: Alles auswählen

$faq[] = array("--","Das hier ist die Überschrift");
Und deine Fragen und Antworten setzt du direkt da drunter in dieser Form :

Code: Alles auswählen

$faq[] = array("Das hier ist die Frage", "Und das hier die Erläuterung / Antwort zur Frage");
Hope that helps :grin: