Author |
Message |
hamrdeye
Hangin' Around
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Aug 20, 2008
Posts: 28
|
Posted:
Thu May 06, 2010 9:18 am |
|
I need locating what file displays the "Defenders Of Freedom: Forums" in middle of the included screenshot of my site.
![Image Image](http://www.teamdof.com/Site.jpg) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nuken
RavenNuke(tm) Development Team
![](modules/Forums/images/avatars/3234de284ee21bd39eecd.jpg)
Joined: Mar 11, 2007
Posts: 2024
Location: North Carolina
|
Posted:
Thu May 06, 2010 10:47 am |
|
It is probably in your themes forum header. You might want to ask over at clanthemes.com, that looks like one of their themes. |
_________________ Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
hamrdeye
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 11:21 am |
|
It shows up on the Forums and Member List modules. Its also there on the stock themes, IE RavenICE and NukeNews. |
Last edited by hamrdeye on Thu May 06, 2010 11:22 am; edited 1 time in total |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
eldorado
Involved
![Involved Involved](modules/Forums/images/ranks/4stars.gif)
![](modules/Forums/images/avatars/52f4453749f5c4a233463.gif)
Joined: Sep 10, 2008
Posts: 424
Location: France,Translator
|
Posted:
Thu May 06, 2010 11:21 am |
|
It's not in the theme folder
it's in modules/Forums and you need to look for header.php or index.php , i don't remember which one to be honest. But i know it's in there.
You'd probably have a good chance of finding the right place by running a search on OpenTable() or Closetable() on the folder. |
_________________ Only registered users can see links on this board! Get registered or login! (My RN site)- Only registered users can see links on this board! Get registered or login!(cod4 clan) - Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nuken
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 11:36 am |
|
modules/Forums/includes/page_header.php for the forums.
Code:if ($row['custom_title'] == "") {
$mod_name = ereg_replace("_", " ", $name);
} else {
$mod_name = $row['custom_title'];
}
if (!$is_inline_review & $mod_name != "Private Messages") {
title("$sitename: $mod_name");
}
|
the other modules have it in their index.php. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
hamrdeye
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 11:42 am |
|
Thanks! If someone could save me a few hours work (as I know nothing about PHP), I want to replace that with a static banner image. I would appreciate it.. I'll try also! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nuken
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 11:45 am |
|
You don't want to put it there. That code just defines the page title. I will look in the theme and see real quick.
Edit. That is where you would edit. |
Last edited by nuken on Thu May 06, 2010 12:22 pm; edited 1 time in total |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
snype
Regular
![Regular Regular](modules/Forums/images/ranks/2stars.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Aug 12, 2008
Posts: 58
|
Posted:
Thu May 06, 2010 11:49 am |
|
I would have thought it would be in the overall_header? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
eldorado
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 12:00 pm |
|
nuken are you sure title is the page title? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
eldorado
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 12:03 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
nuken
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 12:16 pm |
|
in modules/Forums/includes/page_header.php
Change:
Code:if (!$is_inline_review & $mod_name != "Private Messages") {
title("$sitename: $mod_name");
}
|
to
Code:
if (!$is_inline_review & $mod_name != "Private Messages") {
//title("$sitename: $mod_name");
OpenTable();
echo '<center><img src="your banner location here" alt="you banner name" /></center>';
CloseTable();
}
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
hamrdeye
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu May 06, 2010 12:25 pm |
|
SaWeeT!
I made the change! Works like a champ! Thanks nuken! Now I can add an image or just comment out the lines and remove that completely!
You can see it action Only registered users can see links on this board! Get registered or login! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|