Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 06-02-2008, 02:00 AM
Jason Buchanan Jason Buchanan is offline
 
Join Date: May 2008
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default 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.
Attached Images
File Type: jpg postbit examplej.jpg (80.6 KB, 0 views)
Reply With Quote
  #2  
Old 06-02-2008, 08:34 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #3  
Old 06-02-2008, 02:47 PM
Jason Buchanan Jason Buchanan is offline
 
Join Date: May 2008
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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?
Attached Images
File Type: jpg Post_bit example.jpg (31.5 KB, 0 views)
Reply With Quote
  #4  
Old 06-03-2008, 04:48 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You will have to edit the profile templates to move it.
Reply With Quote
  #5  
Old 06-04-2008, 12:52 AM
Jason Buchanan Jason Buchanan is offline
 
Join Date: May 2008
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea which one and where? I have looked over all the postbit templates and nothing stands out.
Reply With Quote
  #6  
Old 06-04-2008, 08:31 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You need to be looking in the memberinfo_* templates (for the User profile).
Reply With Quote
  #7  
Old 06-04-2008, 01:21 PM
Jason Buchanan Jason Buchanan is offline
 
Join Date: May 2008
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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>
I see where it references userrenk and rank, but do not see where it talks about it's placement.
Reply With Quote
  #8  
Old 06-04-2008, 01:30 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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>
Then in memberinfo_css template, find:
Code:
#reputation_rank {
	float:$stylevar[right];
}
#reputation {
	margin-bottom:6px;
	text-align:$stylevar[right];
}
#rank {
	margin-bottom:6px;
	text-align:$stylevar[right];
}
Change to:
Code:
#reputation_rank {
	float:$stylevar[left];
}
#reputation {
	margin-bottom:6px;
	text-align:$stylevar[left];
}
#rank {
	margin-bottom:6px;
	text-align:$stylevar[left];
}
If goes a bit messed up after that, try removing this:
Code:
#reputation_rank {
	float:$stylevar[left];
}
From memberinfo_css
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:22 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04051 seconds
  • Memory Usage 2,254KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (5)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (2)postbit_attachment
  • (8)postbit_onlinestatus
  • (8)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete