Using Forum Description in Thread Page [message #187218] |
Fri, 04 November 2016 09:22 |
alopezie
Messages: 106 Registered: September 2003
Karma: 1
|
Senior Member |
|
|
There is a forum description (listed in forum list). Variable is forum.descr (Variable 11 in thread.php)
I would like to show this description not only in the list of forums, but also in the thread page of the forum.
a) in the title tag of the thread-page
b) as a headline and description of the content of the particular forum in the thread-page
If I place the variable $frm->descr I alway get just the forum title (like $frm->name), but not the full description.
I see its collected in thread.php,and I also tried VAR: r[11], but this gives no result as well.
Any idea??
Alopezie.de - das Forum zum Thema Haarausfall
|
|
|
Aw: Using Forum Description in Thread Page [message #187219 is a reply to message #187218] |
Sun, 06 November 2016 21:08 |
alopezie
Messages: 106 Registered: September 2003
Karma: 1
|
Senior Member |
|
|
Okay, I solved it myself:
1) Add in src/thread_view_common.inc.t in the database call funktion "make_perms_query" (Line 42 in FUDFORUM 3.0.6)
", f.descr"
so roughly:
... SELECT f.id, f.name, f.descr, f.thread_count ...
2) Add a tag in the Thread-Page (I added in header.tmpl for all pages, so I had to add a check to just show it when there is a thread description:
{IF: !empty($frm->descr)}<div class="headtitle"><h1>{VAR: frm->name}</h1></div><div class="headdescr">{VAR: frm->descr}</div>{ENDIF}
3) Add a tag in the TITLE section, my title is now
<title>{GVAR: FORUM_TITLE} {GVAR: TITLE_EXTRA} : {VAR: frm->descr}</title>
Alopezie.de - das Forum zum Thema Haarausfall
|
|
|