Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-06-2005, 05:15 PM
rh2004 rh2004 is offline
 
Join Date: Nov 2004
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Add info above reply box

Hey..

Im looking for the mod to add something like this... the same just different text..

Its above the quick reply box and above a normal reply box...
Attached Images
File Type: jpg 11.JPG (27.1 KB, 0 views)
File Type: jpg 12.JPG (37.2 KB, 0 views)
Reply With Quote
  #2  
Old 01-06-2005, 11:38 PM
WetWired's Avatar
WetWired WetWired is offline
 
Join Date: Jun 2002
Location: Texas
Posts: 669
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by rh2004
Hey..

Im looking for the mod to add something like this... the same just different text..

Its above the quick reply box and above a normal reply box...
Admincp->vBulletin options->Message Posting Interface Options->Enable Clickabke Message Formatting Controls
Admincp->vBulletin options->Message Posting and Editing Options->Quick Reply Enabled

Those are the settings that control that standard feature
Reply With Quote
  #3  
Old 01-07-2005, 12:00 AM
Aros Aros is offline
 
Join Date: Mar 2002
Location: Netherlands
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think you missunderstood his question WetWired

In your AdminCP go to Languages & Phrases ? Phrase Manager. Add a new Phrase;
Varname: reply_rule
Text: Whatever text you want inserted.

Go to Styles & Templates ? Style Manager. Edit the template 'showthread_quickreply';
Search for:
Code:
<tbody id="collapseobj_quickreply" style="$vbcollapse[collapseobj_quickreply]">
Add Below:
Code:
<tr>
	<td>$vbphrase[reply_rule]</td>
</tr>
That was for the Quick Reply, now edit the template 'newreply';
Search for:
Code:
<tr>
	<td class="panelsurround" align="center">
Add Above:
Code:
<tr>
	<td>$vbphrase[reply_rule]</td>
</tr>
This should do it.
Reply With Quote
  #4  
Old 01-07-2005, 02:48 AM
rh2004 rh2004 is offline
 
Join Date: Nov 2004
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ohh awesome, thats great

now can you tell me how I add it to look like that one I tried but its all messed up


This is there code:

HTML Code:
<tr>
<td>
<table style="width:100%;" cellpadding="0" cellspacing="0" border="0"><tr><td class="important">IMPORTANT:</td><td class="redtable">
<span class="smallfont"><strong>- Please ensure your reply is constructive and adds to the discussion<br />- Pointless posts will be removed and may result in you losing posting privileges<br />- To avoid misunderstandings, please don't use 'txt spk' and ensure your post is relatively typo-free</strong></span></td></tr></table>
</td>
</tr>


thanks
Attached Images
File Type: jpg 12.JPG (37.2 KB, 0 views)
Reply With Quote
  #5  
Old 01-07-2005, 09:52 AM
Aros Aros is offline
 
Join Date: Mar 2002
Location: Netherlands
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Replace '$vbphrase[reply_rule' in the templates 'showthread_quickreply' and 'newreply' with this:
Code:
<table style="width:100%;" cellpadding="0" cellspacing="0" border="0"><tr><td class="important">IMPORTANT:</td><td class="redtable">
<span class="smallfont"><strong>$vbphrase[reply_rule]</strong></span></td></tr></table>
Also, be sure to add the CSS Selector (for importand and redtable) in your All Style Options Page.
Reply With Quote
  #6  
Old 01-07-2005, 04:04 PM
rh2004 rh2004 is offline
 
Join Date: Nov 2004
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey.. how do I add the CSS selector also ...


This is the reply_rule

HTML Code:
<table style="width:100%;" cellpadding="0" cellspacing="0" border="0"><tr><td class="important">IMPORTANT:</td><td class="redtable">
<span class="smallfont"><strong>$vbphrase[reply_rule]</strong></span></td></tr></table>


This is the showthread_quickreply

HTML Code:
<tbody id="collapseobj_quickreply" style="$vbcollapse[collapseobj_quickreply]">
<tr>
	<td>cellspacing="0" border="0"><tr><td class="important">IMPORTANT:</td><td class="redtable">
<span class="smallfont"><strong>$vbphrase[reply_rule]</strong></span></td></tr></table>]</td>
</tr>
<tr>
	<td class="panelsurround" align="center">
		<div class="panel">	
			<table cellpadding="0" cellspacing="0" border="0" align="center">


This is the newreply now ...


HTML Code:
<span class="smallfont" style="float:$stylevar[right]"><strong>$vbphrase[thread]</strong>: <a href="showthread.php?$session[sessionurl]t=$threadinfo[threadid]">$threadinfo[title]</a></span>
		$vbphrase[reply_to_thread]
	</td>
<tr>
	<td><table style="width:100%;" cellpadding="0" cellspacing="0" border="0"><tr><td class="important">IMPORTANT:</td><td class="redtable">
<span class="smallfont"><strong>$vbphrase[reply_rule]</strong></span></td></tr></table>]</td>
</tr>
<tr>
	<td class="panelsurround" align="center">
	<div class="panel">
		<div style="width:$stylevar[formwidth]" align="$stylevar[left]">

Is that what you wanted me to do...


There is an image below of how it looks (6367647657.JPG )... the second image is how it looks
when im using the first html code in phrase reply_rule (363562222.JPG )
Attached Images
File Type: jpg 6367647657.JPG (9.8 KB, 0 views)
File Type: jpg 363562222.JPG (16.4 KB, 0 views)
Reply With Quote
  #7  
Old 01-07-2005, 04:38 PM
Aros Aros is offline
 
Join Date: Mar 2002
Location: Netherlands
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You shouldn't insert such code into a phrase, it's messy! You should do it like I said to do it, insert the HTML code into the templates and just whatever text into the phrase.
Reply With Quote
  #8  
Old 01-07-2005, 05:50 PM
rh2004 rh2004 is offline
 
Join Date: Nov 2004
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Aros
You shouldn't insert such code into a phrase, it's messy! You should do it like I said to do it, insert the HTML code into the templates and just whatever text into the phrase.

You never put what to enter in the phase... and also what type is it global
etc

Could you tell me what to add ..


Also the CSS... how to enable, add :up:



Thanks
Reply With Quote
  #9  
Old 01-07-2005, 06:43 PM
Aros Aros is offline
 
Join Date: Mar 2002
Location: Netherlands
Posts: 35
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You insert whatever text in the phrase you want displayed. The phrase = the text.
For the CSS, go to the 'All Style Options' Page, scroll almost all the way to the bottom and add the css in the lower box for 'Additional CSS Definitions'.
Reply With Quote
  #10  
Old 01-08-2005, 01:14 AM
rh2004 rh2004 is offline
 
Join Date: Nov 2004
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok phrase I understand now...

But the CSS how do I know what to enter...


thanks for the help
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 01:51 PM.


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.04669 seconds
  • Memory Usage 2,297KB
  • 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
  • (4)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (5)postbit_attachment
  • (10)postbit_onlinestatus
  • (10)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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete