Thread: Quick Reply Box
View Single Post
  #516  
Old 07-22-2002, 10:22 PM
Darth Cow's Avatar
Darth Cow Darth Cow is offline
 
Join Date: Nov 2001
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Since I already have two requests...

First, run this database query:

Code:
ALTER TABLE user ADD showquickreply tinyint(1) DEFAULT '1' not null AFTER nosessionhash
EDIT: Corrected it to "AFTER nosessionhash" (I forgot I was basing the location after another hack I installed )

That will set the default to show the quick reply - changing "DEFAULT '1'" to "DEFAULT '0'" should set the default to no display.

Make a new template "modifyoptions_showquickreply" with the following contents:

Code:
<tr>
	<td bgcolor="#13486D"><normalfont><b>Show Quick Reply Box?</b></normalfont><br>
	<smallfont>Disabling this option will hide the quick reply boxes at the end of
each thread. You can still reply by clicking on "Post Reply".</smallfont></td>
	<td bgcolor="#13486D"><normalfont>
		<input type="radio" name="showquickreply" value="yes" $showquickreplychecked> yes
		<input type="radio" name="showquickreply" value="no" $showquickreplynotchecked> no
	</normalfont></td>
</tr>
Now, in member.php, after:

PHP Code:
  if ($bbuserinfo[nosessionhash]) {
    
$nosessionhashchecked="checked";
    
$nosessionhashnotchecked="";
  } else {
    
$nosessionhashchecked="";
    
$nosessionhashnotchecked="checked";
  } 
Add:

PHP Code:
// Show Quick Reply Option
  
if ($bbuserinfo[showquickreply]) {
    
$showquickreplychecked="checked";
    
$showquickreplynotchecked="";
  } else {
    
$showquickreplychecked="";
    
$showquickreplynotchecked="checked";
  }
// Show Quick Reply Option 
Still in member.php, before:

PHP Code:
  eval("dooutput(\"".gettemplate("modifyoptions")."\");");
}

// ############################### start update options ############################### 
Add:

PHP Code:
// Show Quick Reply Option
  
eval("\$showquickreplyoption = \"".gettemplate("modifyoptions_showquickreply")."\";");
// Show Quick Reply Option 
EDIT: Forgot this step at first, but here it is . In member.php after:

In member.php, after:

PHP Code:
  $cookieuser=iif($cookieuser=="yes",1,0);
  
$nosessionhash=iif($nosessionhash=="yes",1,0); 
Add:

PHP Code:
// Show Quick Reply Option
  
$showquickreply=iif($showquickreply=="yes",1,0);
// Show Quick Reply Option 
Still in member.php, find:

PHP Code:
  $DB_site->query("UPDATE user
                   SET "
.$updatestyles."adminemail='$adminemail',
                      showemail='
$showemail',invisible='$invisible',cookieuser='$cookieuser',
                      maxposts='"
.addslashes($umaxposts)."',daysprune='".addslashes($prunedays)."',
                      timezoneoffset='"
.addslashes($timezoneoffset)."',emailnotification='$emailnotification',
                      startofweek='"
.addslashes($startofweek)."',options='$options',receivepm='$receivepm',
                      emailonpm='
$emailonpm',pmpopup='$pmpopup',usergroupid='$bbuserinfo[usergroupid]',
                      nosessionhash='
$nosessionhash
Add (continuing previous line):
Code:
,showquickreply='$showquickreply'
Finally, in showthread.php, after:

PHP Code:
} elseif (!$thread['open'] and !ismoderator($thread['forumid'],'canopenclose')) {
    
$replybox=''
(Note: you'll have to install the regular quick reply hack first to find this)

Add:
PHP Code:
} elseif ($bbuserinfo['showquickreply']==0) {
    
$replybox=''
EDIT: One final step I forgot:

Edit the modifyoptions template. After the following code:

Code:
<!-- *** -->
<tr>
	<td bgcolor="#1D6AA0" colspan="2"><normalfont color="#EEEEFF"><b>Thread View Options</b></normalfont></td>
</tr>
<!-- *** -->
Add:

Code:
$showquickreplyoption
There, that should do the trick . If you have any trouble or can't get it to work, let me know.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01306 seconds
  • Memory Usage 1,820KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code
  • (9)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete