Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Move icons under name to Ip Address Line.. (Read 770 times)
|oR|Greg
New Member
*
Offline


|oR| Owns You

Posts: 24
Location: NY
Joined: Dec 26th, 2002
Move icons under name to Ip Address Line..
Feb 10th, 2003 at 8:15pm
Print Post  
How can I do this?

Move icons under username within a post to the Ip Address Line?

Here is my board

http://www.orderofronin.com/community/YaBB.cgi
  
Back to top
WWW  
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Move icons under name to Ip Address Line..
Reply #1 - Feb 12th, 2003 at 2:58pm
Print Post  
Apply the following changes to Display.pl:

replace
Code
Select All
		<BR>$userprofile[8] $icqad &nbsp; $userprofile[10] $yimon &nbsp; $userprofile[9]<BR>
~;
	}
	if($musername eq "Guest") {
		$yymain .= qq~
		<BR><a href="mailto:$memail">$img{'email_sm'}</a><BR><BR>
~;
	}
	elsif ($userprofile[19] ne "checked" || $settings[7] eq "Administrator" || $allow_hide_email ne 1) {
		$yymain .= qq~
		$profbutton$userprofile[4] <a href="mailto:$memail">$img{'email_sm'}</a>$sendm<BR><BR>
~;
	} else {
		$yymain .= qq~
    $profbutton$userprofile[4]$sendm<BR><BR>
~;
	} 



with:
Code
Select All
<BR><BR>~;
} 



then look for this:
Code
Select All
		    <td align="right"><font size="1"><img src="$imagesdir/ip.gif" alt="" border="0"> $mip</font></td> 


and replace it with
Code
Select All
		    <td align="right"><font size="1">~;
	if($musername ne "Guest") {
		$yymain .= qq~$userprofile[8] $icqad &nbsp; $userprofile[10] $yimon &nbsp; $userprofile[9]~;
	}
	if($musername eq "Guest") {
		$yymain .= qq~<a href="mailto:$memail">$img{'email_sm'}</a>~;
	}
	elsif ($userprofile[19] ne "checked" || $settings[7] eq "Administrator" || $allow_hide_email ne 1) {
		$yymain .= qq~$profbutton$userprofile[4] <a href="mailto:$memail">$img{'email_sm'}</a>$sendm~;
	} else {
		$yymain .= qq~$profbutton$userprofile[4]$sendm~;
	}
$yymain .= qq~ <img src="$imagesdir/ip.gif" alt="" border="0"> $mip</font></td> 

  

The Administrator.
Back to top
WWW  
IP Logged
 
|oR|Greg
New Member
*
Offline


|oR| Owns You

Posts: 24
Location: NY
Joined: Dec 26th, 2002
Re: Move icons under name to Ip Address Line..
Reply #2 - Feb 12th, 2003 at 11:32pm
Print Post  
Thanks dude, mine wasn't quite like that cause of some mods I have but I figured it out and now I love the way it looks.. check it out..

http://www.orderofronin.com/community/YaBB.cgi
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint