| Author |
Message |
Antra
Sergeant


Joined: Mar 15, 2003
Posts: 143
|
Posted:
Tue Aug 19, 2003 11:20 am |
  |
The one that goes purl=http://nukecops.com/modules.php?name=Forums&file=ranks]here[/url] and is to the right of Usergroups. How might I duplicate that? I searched on "ranks" within this forum and didn't get much. |
|
|
    |
 |
Mighty_Y
Sergeant


Joined: Feb 27, 2003
Posts: 94
|
Posted:
Wed Aug 20, 2003 1:51 am |
  |
You can go download the mod for this in the downloads on http://www.portedmods.com search for "rankslist" or "rank" or "ranks" or just use this for the advance and this for the normal one
Have fun |
|
|
    |
 |
Antra
Sergeant


Joined: Mar 15, 2003
Posts: 143
|
Posted:
Fri Aug 22, 2003 7:21 am |
  |
Thanks  |
|
|
    |
 |
Pfhreak
Nuke Cadet


Joined: Oct 18, 2003
Posts: 3
|
Posted:
Sat Oct 18, 2003 4:08 pm |
  |
I have been trying to get either of these to work, but nothing is showing up in the header of the forums. I'm running PHP-nuke 6.7 and I've done nothing to upgrade my PHPBB forums. I can't seem to find the line:
| Quote: |
| <!-- END switch_user_logged_out --> |
in overall_header.tpl. (I did a ctrl-F, it simply isn't there....)
Any suggestions? Also, on an unrelated note, where can I find the needed files for the 'Print topic' button below this post?
Thanks a million,
Pfhreak |
|
|
   |
 |
Zhen-Xjell
Nuke Cops Founder


Joined: Nov 14, 2002
Posts: 5939
|
Posted:
Sun Oct 19, 2003 10:47 am |
  |
Actually the original file is found at our CVS site:
http://cvs.nukecops.com
Look for "navtap.php" in the "includes" folder. I wrote it earlier this year and recently released it. |
_________________ Paul Laudanski, Microsoft MVP Windows-Security
CastleCops: [de] [en] [wiki] |
|
     |
 |
Pfhreak
Nuke Cadet


Joined: Oct 18, 2003
Posts: 3
|
Posted:
Mon Oct 20, 2003 8:29 am |
  |
Hmmm... this navtap is a handy tool. Not quite what I was asking for, but something I'll definately have to play with. Here's a little more information on my problem. I am trying to follow this instruction:
| Quote: |
#-----[ OPEN ]------------------------------------------------
#
modules/Forums/templates/subSilver/overall_header.tpl or themes/YOUR_THEME/forums/overall_header.tpl
#
#-----[ FIND ]------------------------------------------------
#
<!-- END switch_user_logged_out -->
#
#-----[ AFTER, ADD ]------------------------------------------
#
<!-- mod : ranks -->
<a href="{U_RANKS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_RANKS}" hspace="3" />{L_RANKS}</a>
<!-- fin mod : ranks -->
# |
But I can't find what it is looking for in my overall_header.tpl file. Any suggestions? |
|
|
   |
 |
gschoper
Captain


Joined: Sep 16, 2003
Posts: 380
|
Posted:
Mon Oct 20, 2003 10:51 am |
  |
Had a similar problem with not having that line. Where you add the code is pretty much theme specific. Here's what I did:
In themes/YOUR_THEME/forums/overall_header.tpl
Find:
| Code: |
<td height="25" align="center" valign="top" nowrap><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a> :: <a href="{U_PRIVATEMSGS}" class="mainmenu">{PRIVATE_MESSAGE_INFO}</a> :: <a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a></span></td>
|
Replace with:
| Code: |
<td height="25" align="center" valign="top" nowrap><span class="mainmenu"><a href="{U_PROFILE}" class="mainmenu">{L_PROFILE}</a> :: <a href="{U_PRIVATEMSGS}" class="mainmenu">{PRIVATE_MESSAGE_INFO}</a> :: <a href="{U_LOGIN_LOGOUT}" class="mainmenu">{L_LOGIN_LOGOUT}</a> :: <a href="{U_RANKS}" class="mainmenu">{L_RANKS}</a></span></td>
|
You can see how it looks at http://nuke.schoper.net/forums.html |
_________________
http://nuke.schoper.net/ |
|
     |
 |
Pfhreak
Nuke Cadet


Joined: Oct 18, 2003
Posts: 3
|
Posted:
Mon Oct 20, 2003 2:12 pm |
  |
Interesting. Yup, that sure did it. Just had to insert the Ranks link into that portion of the code. Thanks for the heads up. |
|
|
   |
 |
|
|