The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Post_Bit Legacy woes
I have some custom titles I want to use in the Post_Bit Legacy Template. How do I go about doing it like the ones in the attached image? I want to be able to assign through usergroup id's. Thanks in advance.
|
#2
|
|||
|
|||
Try "User Ranks" it is listed in the Navigation menu of the AdminCP. Check the vBulletin manual if you need extra information about using it.
|
#3
|
|||
|
|||
That worked! I do have one other question in my user profile it has the image to the far right any way to get in under the user name in the profile?
|
#4
|
||||
|
||||
You will have to edit the profile templates to move it.
|
#5
|
|||
|
|||
Any idea which one and where? I have looked over all the postbit templates and nothing stands out.
|
#6
|
|||
|
|||
You need to be looking in the memberinfo_* templates (for the User profile).
|
#7
|
|||
|
|||
Code:
<!-- begin user css --> <div id="usercss" class="floatcontainer"> <div id="content_container"> <div id="content"> <div id="main_userinfo" class="floatcontainer"> <table cellpadding="0" cellspacing="0" border="0" width="100%"> <tr> <if condition="$prepared['profilepicurl']"> <td id="profilepic_cell" class="tborder alt2"><img src="$prepared[profilepicurl]" $prepared[profilepicsize] alt="<phrase 1="$prepared[username]">$vbphrase[xs_picture]</phrase>" /></td> </if> <td valign="top" width="100%" id="username_box"<if condition="$prepared['profilepicurl']"> class="profilepic_adjacent"</if>> <if condition="$prepared['rank'] OR $prepared['reputationdisplay']"> <div id="reputation_rank"> <if condition="$prepared['reputationdisplay']"> <div id="reputation">$prepared[reputationdisplay]</div> </if> <if condition="$prepared['rank']"> <div id="rank">$prepared[rank]</div> </if> </div> </if> <h1>$prepared[musername] $prepared[onlinestatus]</h1> <if condition="$prepared['usertitle']"> <h2>$prepared[usertitle]</h2> </if> </td> </tr> </table> |
#8
|
|||
|
|||
Place the bit in red underneath the bit in green.
Code:
<td valign="top" width="100%" id="username_box"<if condition="$prepared['profilepicurl']"> class="profilepic_adjacent"</if>> <if condition="$prepared['rank'] OR $prepared['reputationdisplay']"> <div id="reputation_rank"> <if condition="$prepared['reputationdisplay']"> <div id="reputation">$prepared[reputationdisplay]</div> </if> <if condition="$prepared['rank']"> <div id="rank">$prepared[rank]</div> </if> </div> </if> <h1>$prepared[musername] $prepared[onlinestatus]</h1> <if condition="$prepared['usertitle']"> <h2>$prepared[usertitle]</h2> </if> </td> Code:
#reputation_rank { float:$stylevar[right]; } #reputation { margin-bottom:6px; text-align:$stylevar[right]; } #rank { margin-bottom:6px; text-align:$stylevar[right]; } Code:
#reputation_rank { float:$stylevar[left]; } #reputation { margin-bottom:6px; text-align:$stylevar[left]; } #rank { margin-bottom:6px; text-align:$stylevar[left]; } Code:
#reputation_rank { float:$stylevar[left]; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|