Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Template Modifications
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
User Signature in a box Details »»
User Signature in a box
Version: 1.00, by GFSR GFSR is offline
Developer Last Online: Sep 2015 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 07-04-2006 Last Update: Never Installs: 23
 
No support by the author.

Time Required : 2-3 Minutes

This is my first template modification, Please be Kind.

Find the following code in postbit template in your default style

Admin CP > Style Manager > Search in Templates > Choose Your style and put postbit and click Find

Code:
		<if condition="$post['signature']">
		<!-- sig -->
			<div>
				__________________<br />
				$post[signature]
			</div>
		<!-- / sig -->
Replace With the following code :

Code:
		<if condition="$post['signature']">
		<!-- sig -->
<fieldset class="fieldset">
				<legend>Signature</legend>
				<div style="padding: 3px;">
					
$post[signature]

						</div>
					
				</div>
			</fieldset>
		<!-- / sig -->

Please Click Install once you successfuly install.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 07-07-2006, 09:30 PM
Canis Firebrand Canis Firebrand is offline
 
Join Date: Jun 2006
Location: Michigan
Posts: 97
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice. Installed.

Though I made one small change. With your replacement as stated, it put the signature box right under the post text with no break.

I added in a <br /> before the <fieldset> part. Looks very nice.

Thanks.
Reply With Quote
  #13  
Old 07-07-2006, 09:36 PM
BANDiT600 BANDiT600 is offline
 
Join Date: Jul 2003
Location: Russian Federation
Posts: 163
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Canis Firebrand, we think in one way...
Reply With Quote
  #14  
Old 07-07-2006, 09:49 PM
GFSR GFSR is offline
 
Join Date: Apr 2006
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's fine, I will try to get more template modifications.
Reply With Quote
  #15  
Old 07-08-2006, 05:25 AM
Nathan2006's Avatar
Nathan2006 Nathan2006 is offline
 
Join Date: Feb 2006
Location: UK
Posts: 862
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you GFSR

I installed this the other day and clicked install but forgot to say
thank you

Install
Reply With Quote
  #16  
Old 07-08-2006, 05:56 AM
GFSR GFSR is offline
 
Join Date: Apr 2006
Posts: 37
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's Fine, Will get more modifications soon!!!
Reply With Quote
  #17  
Old 07-12-2006, 08:19 PM
Nathan2006's Avatar
Nathan2006 Nathan2006 is offline
 
Join Date: Feb 2006
Location: UK
Posts: 862
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

I have added a screen shot to show the problem Im having

It was working for the past few days and now the top line has gone.

This works in firefox but not in IE anymore

Also I have added a bit of code from my postbit_legacy:

Code:
					<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
					$post[moderatedattachments]
					</table>
				</fieldset>		
			</if>
			
			</div>
		<!-- / attachments -->
		</if><br><br><br><br><br><br><br />
				<if condition="$post['signature']">
		<!-- sig -->
<fieldset class="fieldset">
				<legend>Signature</legend>
				<div style="padding: 3px;">
					
$post[signature]

						</div>
					
				</div>
			</fieldset>
		<!-- / sig -->
		</if>
		
		<if condition="$show['postedited']">
		<!-- edit note -->
			<div class="smallfont">			<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
				<em>
				<phrase 1="$post[edit_username]" 2="$post[edit_date]" 3="$post[edit_time]">$vbphrase[last_edited_by_x_on_y_at_z]</phrase>.
				<if condition="$post['edit_reason']">$vbphrase[reason]: $post[edit_reason]</if>
Thank you for any help
Reply With Quote
  #18  
Old 07-12-2006, 08:53 PM
peterska2 peterska2 is offline
 
Join Date: Oct 2003
Location: Manchester, UK
Posts: 6,504
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try this, as there is a </div> too many in the code which FF will overlook but IE will include.
Code:
<if condition="$post['signature']">
		<!-- sig -->
<fieldset class="fieldset">
				<legend>Signature</legend>
				<div style="padding: 3px;">					
$post[signature]
	</div>
			</fieldset>
		<!-- / sig -->
		</if>
Reply With Quote
  #19  
Old 07-12-2006, 11:21 PM
gbechtel gbechtel is offline
 
Join Date: Aug 2005
Posts: 75
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Put the username in so it reads "user's Signature"


Code:
<br />	
<if condition="$post['signature']">
<!-- sig -->
<fieldset class="fieldset">
<legend>$post[username]'s Signature</legend>
<div style="padding: 3px;">
		
$post[signature]

</div>
</fieldset>
<!-- / sig -->
Reply With Quote
  #20  
Old 07-13-2006, 07:42 AM
Nathan2006's Avatar
Nathan2006 Nathan2006 is offline
 
Join Date: Feb 2006
Location: UK
Posts: 862
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by peterska2
Try this, as there is a </div> too many in the code which FF will overlook but IE will include.
I did remove that code and also tried your code but still no luck with the
line at the top of the sig

This month Microsoft released a lot of updates to xp and IE and I installed them, Even tho I am only using IE 6.

Quote:
Originally Posted by gbechtel
Put the username in so it reads "user's Signature"
Thank you that looks really nice but the line at the top of
the sig does not work


Is this happening to anyone else?

Also does anyone have a fix for this?

Thank you for any help
Reply With Quote
  #21  
Old 07-19-2006, 08:54 AM
WAHMama WAHMama is offline
 
Join Date: Jun 2006
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gbechtel
Put the username in so it reads "user's Signature"


Code:
<br />	
<if condition="$post['signature']">
<!-- sig -->
<fieldset class="fieldset">
<legend>$post[username]'s Signature</legend>
<div style="padding: 3px;">
		
$post[signature]

</div>
</fieldset>
<!-- / sig -->
Awesome idea, I really like it on my board Adding the username personalizes the siggy box even more I think
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 09:19 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05265 seconds
  • Memory Usage 2,307KB
  • Queries Executed 25 (?)
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
  • (6)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)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_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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete