Please or Register to create posts and topics.

Text above the forum

I added the shortcut [forum] to the page / forum and put a text over it. That explains what should happen in the forum .. see example
https://verschickungsheime.de/forum/
Now I would like to hide the text for the forum in the categories and the posts .. I can either do that with the CSS in the body that I am in there .. (something like that does the wordpress) or there is in the forum a trick to put a text in front of the forum at the beginning ..

Biff has reacted to this post.
Biff

Hey @bhoernchen

da deine Seite auf Deutsch ist gehe ich mal davon aus, dass du auch Deutsch sprichst.

Versuchs mal mit folgendem Code in deiner Theme functions.php:

add_action('asgarosforum_overview_custom_content_top', function () {
		echo '<div class="text_above_forum"><h1 class="entry-title">Forum</h1>
		Unser neues Forum ist jetzt so weit zugänglich. Ihr könnt nun unsere Webseite selber bestücken, was es hoffentlich einfacher für alle macht.<br><br>
		Überall könnt Ihr jetzt eigene Beiträge einstellen und mit anderen direkt in Kontakt treten, ohne dass alles immer über mich gehen muss. <br><br>
		Bitte zu Beginn gleich immer euren <strong>Heimnamen</strong> und <strong>Verschickungsjahr</strong> reinschreiben, das macht es einfacher für andere, euch zu finden. Bitte nehmt ein wenig Rücksicht auf eure Mitmenschen, manche kennen sich schon besser aus, manche sind in Foren vielleicht noch nicht so erfahren, wie andere.</div>';
});

Ich hoffe ich habe dein “Problem” richtig verstanden. Damit wird dein Text nur auf der Übersichtsseite angezeigt!

Danach kannst du via CSS das aussehen noch an deine Wünsche anpassen. Habs bei mir getestet – sollte funktionieren.

Als beispiel ein kleiner Abstand unter dem Text:

.text_above_forum {
    margin-bottom: 20px;
}

 

Hoffe ich konnte weiterhelfen!

Asgaros and bhoernchen have reacted to this post.
Asgarosbhoernchen