The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
i have this code in my template memberinfo
HTML Code:
<td valign="top"> <if condition="$post['field1'] != '' "> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"> About Me: </font> <br> <font color="#000000" style="font-weight:none; font-size:9pt; font-family: verdana;"> $post[field1]</font> </td> </table> <br> </if> <if condition="$post['field28'] != '' "> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"> About Me: </font> <br> <font color="#000000" style="font-weight:none; font-size:9pt; font-family: verdana;"> $post[field28]</font> </td> </table> <br> </if> <!-- Start vBBuddies --> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#6699CC" valign="top"> <tr> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;">$vbphrase[buddies]</td> </tr> </table> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> $profilebuddylist </table> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <tr> <td align="right"><font style="font-weight:bold; font-size:8pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"><a href="buddies.php?u=$userinfo[userid]" class="onwhite">View All of $userinfo[username]'s Friends</a></td> </tr> </table> <!-- End vBBuddies --> If my field 1 and/or 28 are blank...... it doesnt show the VB BUDDIES for some reason.... anyone know why? |
#2
|
||||
|
||||
![]()
you should really try and indent your code before you post it, reading long code is just tedious when it's all flat at the back as so.
anyway try HTML Code:
<td valign="top"> <if condition="!$post['field1']"> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"> About Me: </font> <br> <font color="#000000" style="font-weight:none; font-size:9pt; font-family: verdana;"> $post[field1]</font> </td> </table> <br> </if> <if condition="!$post['field28']"> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"> About Me: </font> <br> <font color="#000000" style="font-weight:none; font-size:9pt; font-family: verdana;"> $post[field28]</font> </td> </table> <br> </if> <!-- Start vBBuddies --> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#6699CC" valign="top"> <tr> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;">$vbphrase[buddies]</td> </tr> </table> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> $profilebuddylist </table> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <tr> <td align="right"><font style="font-weight:bold; font-size:8pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"><a href="buddies.php?u=$userinfo[userid]" class="onwhite">View All of $userinfo[username]'s Friends</a></td> </tr> </table> <!-- End vBBuddies --> HTML Code:
<if condition="!$post['field1']"> <!-- do field 1 stuff --> </else> <if condition="!$post['field28']"> <!-- do field28 stuff --> </if> </if> |
#3
|
||||
|
||||
![]()
The code you gave me still makes the ABout Me:'s show.. boht of them.. i dont want them to show unless the field mentioned in the <if condition> has something in it...
|
#4
|
||||
|
||||
![]()
</else> should be <else />
|
#5
|
||||
|
||||
![]() HTML Code:
<if condition="!$post['field1']"> <!-- do field 1 stuff --> </else> <if condition="!$post['field28']"> <!-- do field28 stuff --> </if> </if> |
#6
|
||||
|
||||
![]() Quote:
<else /> << good </else> << bad |
#7
|
||||
|
||||
![]() Quote:
|
#8
|
||||
|
||||
![]()
lol i dont think you guys understood the coding so let me repost it.. the thing is that i posted it with two About Me:'s so you guys thought that i WANTED an else... the truth is i dont. Take a look at the code now and see if you can understand it better.
HTML Code:
<td valign="top"> <if condition="!$post['field1']"> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"> About Me: </font> <br> <font color="#000000" style="font-weight:none; font-size:9pt; font-family: verdana;"> $post[field1]</font> </td> </table> <br> </if> <if condition="!$post['field28']"> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"> Who I'd like to meet: </font> <br> <font color="#000000" style="font-weight:none; font-size:9pt; font-family: verdana;"> $post[field28]</font> </td> </table> <br> </if> <!-- Start vBBuddies --> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#6699CC" valign="top"> <tr> <td width="100%"><font color="#023E7B" style="font-weight:bold; font-size:10pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;">$vbphrase[buddies]</td> </tr> </table> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> $profilebuddylist </table> <table cellpadding="1" cellspacing="0" width="300" align="center" valign="top" border="0" bgcolor="#ffffff" valign="top"> <tr> <td align="right"><font style="font-weight:bold; font-size:8pt; font-family:tahoma, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;"><a href="buddies.php?u=$userinfo[userid]" class="onwhite">View All of $userinfo[username]'s Friends</a></td> </tr> </table> <!-- End vBBuddies --> |
#9
|
||||
|
||||
![]() HTML Code:
<if condition="!$post['field1']"> <!-- do field 1 stuff --> <else /> <if condition="!$post['field28']"> <!-- do field28 stuff --> </if> </if> <!-- rest of the stuff you wanted --> |
#10
|
||||
|
||||
![]()
Thanks to everyone who tried to help, however, i found the problem....
I had an <if> statement that shouldn't have been there, somewhere else in the template. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|