Author |
Message |
0xid0
New Member


Joined: Jun 28, 2006
Posts: 6
|
Posted:
Sat Sep 16, 2006 2:35 pm |
|
Hola, I have a problem and it is that in the titles of the forum, before the message in the title it puts Forums-viewtopic and I would like to know how to eliminate it.
Regards |
|
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Sat Sep 16, 2006 5:52 pm |
|
How about a link to your site. I am not sure what it is you are referring to. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
0xid0

|
Posted:
Sat Sep 16, 2006 5:56 pm |
|
|
|
 |
evaders99
Former Moderator in Good Standing

Joined: Apr 30, 2004
Posts: 3221
|
Posted:
Sat Sep 16, 2006 9:58 pm |
|
In modules/Forums/nukebb.php
Code:
$pagetitle = "$name-$file-$tname" ;
TO
$pagetitle = "$name-$tname" ;
|
|
_________________ - Only registered users can see links on this board! Get registered or login! -
Need help? Only registered users can see links on this board! Get registered or login! |
|
|
 |
0xid0

|
Posted:
Sat Sep 16, 2006 10:51 pm |
|
evaders99 wrote: | In modules/Forums/nukebb.php
Code:
$pagetitle = "$name-$file-$tname" ;
TO
$pagetitle = "$name-$tname" ;
| |
Thanks!!!!!!!  |
|
|
|
 |
guynuked
Hangin' Around

Joined: Jan 11, 2004
Posts: 37
|
Posted:
Sun Dec 31, 2006 5:16 am |
|
I'm using RN and I have this code below. I would love to see page title showing name of category currently in. Clicking on a board changes title to name of the board. What's the best way for achieving such solution?
Code:global $db, $prefix, $phpbb_root_path, $nuke_root_path, $nuke_file_path, $phpbb_root_dir, $module_name, $name, $file;
$module_name = "Forums";
$nuke_root_path = "modules.php?name=".$module_name;
$nuke_file_path = "modules.php?name=".$module_name."&file=";
$phpbb_root_path = "modules/".$module_name."/";
$phpbb_root_dir = "./../";
require_once("mainfile.php");
get_lang($module_name);
if(isset($f)) {
$f = intval($f);
$sql="SELECT forum_name FROM ".$prefix."_bbforums WHERE forum_id='$f' LIMIT 0,1";
$result = $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result)) {
$fname = check_html($row['forum_name'], "nohtml");
$pagetitle = "$name-$fname" ;
$pagetitle = check_html($pagetitle, "nohtml");
}
}
|
Please advise.
Happy New Year's 2007! |
|
|
|
 |
montego

|
Posted:
Mon Jan 01, 2007 10:01 pm |
|
You could consider using Dynamic Titles. I have been meaning to release a slightly updated version of it since incorporating it into the upcoming ReavenNuke 2.10 release, but have not had time.
Here is the code from the Forums portion of this tool as it might give you the ideas you are after - I just don't have time to formalize a release right now:
Code:
global $p, $t, $forum, $f;
if ($p) {
$p = intval($p);
$sql = 'SELECT post_subject, post_id, post_text FROM '.$prefix.'_bbposts_text WHERE post_id=\''.$p.'\'';
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$title = $row['post_subject'];
$post = $row['post_id'];
$ptext = $row['post_text'];
$newpagetitle = $title.' '.$dt_delim.' '.$ptext;
} elseif ($t) {
$t = intval($t);
$sql = 'SELECT topic_first_post_id FROM '.$prefix.'_bbtopics WHERE topic_id=\''.$t.'\'';
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$tpid = $row['topic_first_post_id'];
$sql = 'SELECT post_subject, post_id, post_text FROM '.$prefix.'_bbposts_text WHERE post_id=\''.$tpid.'\'';
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$title = $row['post_subject'];
$post = $row['post_id'];
$ptext = $row['post_text'];
$newpagetitle = $title.' '.$dt_delim.' '.$ptext;
} elseif ($f) {
$f = intval($f);
$sql = 'SELECT forum_name FROM '.$prefix.'_bbforums WHERE forum_id=\''.$f.'\'';
$result = $db->sql_query($sql);
$row = $db->sql_fetchrow($result);
$forum = $row['forum_name'];
$newpagetitle = $sitename.' '.$dt_delim.' '.$forum;
}
|
Hope that helps. Not all the variables are the same, but the concept and details are completely relevant to what you are asking for. |
|
|
|
 |
|