The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
Hello all,
How do i hide only my join date? Thank you for all your help! ![]() |
#2
|
||||
|
||||
![]()
Hide it (like from certain usergroups?), or delete it? And from where?
|
#3
|
||||
|
||||
![]() Quote:
![]() Thanks ![]() |
#4
|
||||
|
||||
![]()
That's on several templates. Do a Search in Templates for "joindate" > go to edit the template > hit find (joindate should already be prewritten in there) and then remove, or comment out to test first, that line.
|
#5
|
||||
|
||||
![]()
This will take away all user's join date.
I just want mine (admin, userid 1) to be hidden. Thanks again Lynne for your help. |
#6
|
||||
|
||||
![]()
Put a condition around all those instances of the join date:
HTML Code:
<if conditon="$whatever[userid] != '1'"> The line that $whatever[joindate] is on </if> It's going to be a bit of effort just to hide a joindate. Why not just set it to whatever you want in the usercp? |
#7
|
||||
|
||||
![]() Quote:
--------------- Added [DATE]1233104370[/DATE] at [TIME]1233104370[/TIME] --------------- Thank you for your help. ![]() --------------- Added [DATE]1233104773[/DATE] at [TIME]1233104773[/TIME] --------------- ok so i searched for joindate and this is what i got - PHP Code:
What would i need to do to that code? |
#8
|
||||
|
||||
![]() Quote:
As I recall, you're fascinated by the number 1320... So, you could fake your joindate. Try something like: Code:
<if conditon="$whatever[userid] != '1'"> The line that $whatever[joindate] is on <else>Join date: Jan. 1, 1320 </if> |
#9
|
||||
|
||||
![]() Quote:
1320 = How many feet are in a quarter mile. ![]() --------------- Added [DATE]1233106458[/DATE] at [TIME]1233106458[/TIME] --------------- Is this correct? PHP Code:
The following error occurred when attempting to evaluate this template: The conditional on line 50 appears to be missing its beginning tag (<if>). This may cause unexpected behavior. This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish. |
#10
|
||||
|
||||
![]()
This should work:
HTML Code:
<if conditon="$post[userid] != '1'"> <div>$vbphrase[join_date]: $post[joindate]</div> <else /> <div>$vbphrase[join_date]: Jan. 1, 1320 </div> </if> |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|