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

Reply
 
Thread Tools
[Tweak] New Reply Box Details »»
[Tweak] New Reply Box
Version: 1.00, by (Guest)
Developer Last Online: Jan 1970 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 08-16-2002 Last Update: Never Installs: 0
 
No support by the author.

Since this is a hack i can only give you the template changes. If you do not have this hack installed please go here.

https://vborg.vbsupport.ru/showthrea...threadid=34597

I made this more COMPACT. if you like it use it!


REPLACE YOUR "SHOWTHREAD_REPLYBOX" with the following

Show Your Support

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

Comments
  #12  
Old 08-20-2002, 05:58 PM
Attrox's Avatar
Attrox Attrox is offline
 
Join Date: Jan 2002
Location: St.Paul, MN
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh, I like this. Thanks, ZiRu$.
Reply With Quote
  #13  
Old 08-21-2002, 03:10 AM
Vile's Avatar
Vile Vile is offline
 
Join Date: Apr 2002
Location: Arizona, USA
Posts: 123
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice work
Reply With Quote
  #14  
Old 08-22-2002, 07:42 AM
Tony G's Avatar
Tony G Tony G is offline
 
Join Date: Nov 2001
Location: Melbourne, Australia
Posts: 8,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by ZiRu$


yes.....and thats ok.....cause theres no hacking required

if i said edit a hack then there would be a problem
But your supposed to edit the actual vB, not vB.org hacks.

Haven't you noticed that trend?
Reply With Quote
  #15  
Old 08-23-2002, 04:47 PM
SgtSling SgtSling is offline
 
Join Date: Oct 2001
Posts: 156
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

awesome dude
Reply With Quote
  #16  
Old 08-26-2002, 07:56 AM
Brad Brad is offline
 
Join Date: Nov 2001
Posts: 4,765
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Tony


But your supposed to edit the actual vB, not vB.org hacks.

Haven't you noticed that trend?

Well, i think it can still be posted because there was no hacking done by ZiRu$, he was only releasing a custom template.
Reply With Quote
  #17  
Old 08-26-2002, 10:25 AM
Tony G's Avatar
Tony G Tony G is offline
 
Join Date: Nov 2001
Location: Melbourne, Australia
Posts: 8,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*shrugs*

Well None of the mods have done anything so I guess it can be allowed.

No skin off my nose.
Reply With Quote
  #18  
Old 08-27-2002, 10:46 AM
wolfe
Guest
 
Posts: n/a
Default

here is another one guys made by me

Quote:
PHP Code:
Replace Everything In Your showthread_quickreply template with the following code.


// -------------QuickReply Revamp By Wolfe--------------------------------

<script language="javascript">
<!--
var 
postmaxchars $postmaxchars;
function 
validate(theform) {
    if (
theform.message.value=="") {
        
alert("Please complete the message field.");
        return 
false; }
    if (
postmaxchars != 0) {
        if (
theform.message.value.length $postmaxchars) {
            
alert("Your message is too long.\n\nReduce your message to $postmaxchars characters.\nIt is currently "+theform.message.value.length+" characters long.");
            return 
false; }
        else { return 
true; }
    } else { return 
true; }
}
function 
checklength(theform) {
    if (
postmaxchars != 0) { message "\nThe maximum permitted length is $postmaxchars characters."; }
    else { 
message ""; }
    
alert("Your message is "+theform.message.value.length+" characters long."+message);
}
//-->
</script>
<
form enctype="multipart/form-data" action="newreply.php" name="vbform" method="post">
<
input type="hidden" name="s" value="$session[sessionhash]">
<
input type="hidden" name="action" value="postreply">
<
input type="hidden" name="threadid" value="$threadid">
<
table cellpadding="0" cellspacing="0" border="0" bgcolor="#000000"  width="100%" align="center"><tr><td><table cellpadding="4" cellspacing="1" border="0"  width="100%"><tr><td width="175" bgcolor="{firstaltcolor}" valign="top" nowrap><b>QUICK REPLY:</b><br><normalfont>Please note that this is only a fast text reply.<br><br>For replies including imagesfontscolourssmileys etc plz use the "post reply" button below.<br><br><input type="submit" class="bginput" value="Submit quick reply" accesskey="s" tabindex="3"></normalfont></td><td width="45%" bgcolor="{firstaltcolor}">&nbsp;<textarea name="message" rows="10" cols="$textareacolswrap="virtual" tabindex="1"></textarea><br><smallfont><a href="java script:checklength(document.vbform);">[check message length]</a></smallfont></td><td width="*" bgcolor="{firstaltcolor}" valign="top"><smallfont><b>OPTIONS:</b></font><br><smallfont><input type="checkbox" name="parseurl" value="yes"> <b>Automatically parse URLs: </b>Automatically adds <a href="http:// and " target="_blank"> and </aaround internet addresses.<br><input type="checkbox" name="email" value="yes" CHECKED> <b>Email Notification: </b>Emails sent to you whenever someone repliesOnly registered users are eligible.<br><input type="checkbox" name="disablesmilies" value="yes" > <b>Disable Smilies in This Post:</b>
<
br><input type="checkbox" name="signature" value="yes" CHECKED> <b>Show Signature: </b>Include your profile signatureOnly registered users may have signatures.<br><br><br><b><i>Quick Reply Design By Wolfe</i></b></select></smallfont></td></tr></table></font></td></tr></tr></table></td></tr></form>

// -------------QuickReply Revamp By Wolfe-------------------------------- 
http://www.vbulletintemplates.com/mo...s=&postid=5145
Reply With Quote
  #19  
Old 08-27-2002, 11:41 AM
Tony G's Avatar
Tony G Tony G is offline
 
Join Date: Nov 2001
Location: Melbourne, Australia
Posts: 8,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Documenting it would be good.
Reply With Quote
  #20  
Old 08-28-2002, 08:20 PM
platoon
Guest
 
Posts: n/a
Default

Do u have to make new templte for this mod, i have not got a file called SHOWTHREAD_REPLYBOX??
Reply With Quote
  #21  
Old 08-29-2002, 10:39 AM
wolfe
Guest
 
Posts: n/a
Default

or you could just add the code in the Showthread Template
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:31 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.05946 seconds
  • Memory Usage 2,327KB
  • 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
  • (1)bbcode_php
  • (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
  • (7)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
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_imicons
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete