Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.6
Author Message
0xid0
New Member
New Member



Joined: Jun 28, 2006
Posts: 6

PostPosted: Sat Sep 16, 2006 2:35 pm Reply with quote

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
 
View user's profile Send private message
montego
Site Admin



Joined: Aug 29, 2004
Posts: 9457
Location: Arizona

PostPosted: Sat Sep 16, 2006 5:52 pm Reply with quote

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! 
View user's profile Send private message Visit poster's website
0xid0







PostPosted: Sat Sep 16, 2006 5:56 pm Reply with quote

http://www.turbop2m.com/ftopict-2536.html
http://www.turbop2m.com/ftopict-2533.html
http://www.turbop2m.com/ftopict-2534.html

look at the beginning of the titles, I would like to eliminate it of Forum-viewtopic text.

Thanks
 
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Sat Sep 16, 2006 9:58 pm Reply with quote

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! 
View user's profile Send private message Visit poster's website
0xid0







PostPosted: Sat Sep 16, 2006 10:51 pm Reply with quote

evaders99 wrote:
In modules/Forums/nukebb.php

Code:


$pagetitle = "$name-$file-$tname" ;

TO

$pagetitle = "$name-$tname" ;


Thanks!!!!!!! Laughing Laughing Laughing Laughing Laughing Laughing
 
guynuked
Hangin' Around



Joined: Jan 11, 2004
Posts: 37

PostPosted: Sun Dec 31, 2006 5:16 am Reply with quote

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!
 
View user's profile Send private message
montego







PostPosted: Mon Jan 01, 2007 10:01 pm Reply with quote

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.
 
Display posts from previous:       
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Ravens PHP Scripts And Web Hosting Forum Index -> phpnuke 7.6

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©