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

Reply
 
Thread Tools
PM RealQuickReply Details »»
PM RealQuickReply
Version: 1.00, by JusteCards JusteCards is offline
Developer Last Online: Jun 2006 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 05-27-2006 Last Update: 05-27-2006 Installs: 36
Uses Plugins Template Edits
 
No support by the author.

I've never really considered including the whole newpm box at the bottom of a pm a very "Quick" way of replying.. So after much tweaking this is what I came up with..

PM RealQuickReply v1.01

Firstly install the attached product file..

Next we need to edit the pm_newpm template.

find:
Code:
<tr>
	<td class="tcat">$vbphrase[post_new_private_message]</td>
</tr>
replace with:
Code:
<tr>
	<td class="tcat"><if condition="($_REQUEST['do'] == 'showpm')">Quickreply to $originalposter<else />$vbphrase[post_new_private_message]</if></td>
</tr>
find:
Code:
<!-- recipients field -->
add above:
Code:
<if condition="($_REQUEST['do'] == 'showpm')">
<input type="hidden" id="pmrecips_txt" name="recipients" value="$pm[recipients]">
<input type="hidden" name="title" value="$pm[title]">

		<!-- message area -->
		<div class="smallfont">$vbphrase[message]:</div>		
		<div id="$editorid" class="vBulletin_editor" align="$stylevar[left]">$messagearea</div>
		<!-- / message area -->

<else />
find:
Code:
$posticons
add above:
Code:
</if>
Your done with that template.

Now we need to edit the pm_showpm template.

find and remove:
Code:
<form action="private.php" method="post">
now find:
Code:
$postbit

<br />
and below it add:
Code:
$vBeditTemplate[clientscript]
$quickpmreply
<script type="text/javascript" src="clientscript/vbulletin_quick_reply.js"></script>

<form action="private.php" method="post">
and your done.. Enjoy :bunny: (Please remember to click install to be informed of updates)

Changelog:
v1.00 Initial Release
v1.01 pm_newpm Edit changed in the hope of a more troublefree install.


--------------
Optional Extras
--------------


To add support for Psionic Vision's Advanced PM Options

(Firstly Install that hack) Then in the PM RealQuickReply Plugin [private_showpm_start] hook find:
Code:
  $is_quick_reply = 1;
  eval('$quickpmreply = "' . fetch_template('pm_newpm') . '";');
above that add:
Code:
$checked['savecopy'] = ($vbulletin->userinfo['advpmoptions_savecopy'] ? 'checked="checked"' : '');

$checked['receipt'] = ($vbulletin->userinfo['advpmoptions_receipt'] ? 'checked="checked"' : '');

$checked['deleteoriginal'] = ($vbulletin->userinfo['advpmoptions_deleteoriginal'] ? 'checked="checked"' : '');
and your done

Show Your Support

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

Comments
  #2  
Old 05-28-2006, 10:06 AM
Jon_Simmonds Jon_Simmonds is offline
 
Join Date: Nov 2005
Location: UK
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

looks nice, installing now
Reply With Quote
  #3  
Old 05-28-2006, 10:15 AM
Jon_Simmonds Jon_Simmonds is offline
 
Join Date: Nov 2005
Location: UK
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get this :S


edit

my bad, i followed the
Quote:
ind:
Code:

<!-- / message area -->


add below:
Code:

</if>

instructions wrong
Reply With Quote
  #4  
Old 05-28-2006, 11:03 AM
JusteCards JusteCards is offline
 
Join Date: Mar 2006
Location: Ashton-Under-Lyne
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Jon_Simmonds
my bad, i followed the instructions wrong
Yep you need to make sure you place it after:
Code:
<!-- / message area -->
and not:
Code:
<!-- message area -->
Otherwise you'll run into that problem..
Reply With Quote
  #5  
Old 05-28-2006, 02:29 PM
rmxs rmxs is offline
 
Join Date: Apr 2006
Posts: 419
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Installed
Reply With Quote
  #6  
Old 05-28-2006, 03:00 PM
FleaBag's Avatar
FleaBag FleaBag is offline
 
Join Date: Dec 2001
Posts: 1,674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I end up with 2 message boxes? One where it should be and one below the pm reply (which are not where they should be) options. Any ideas? I tried reinstalling twice. :-/
Reply With Quote
  #7  
Old 05-28-2006, 03:15 PM
JusteCards JusteCards is offline
 
Join Date: Mar 2006
Location: Ashton-Under-Lyne
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FleaBag
I end up with 2 message boxes? One where it should be and one below the pm reply (which are not where they should be) options. Any ideas? I tried reinstalling twice. :-/
Firstly, make sure you've taken note of this post. If so and your still having problems PM Me your pm_newpm template and I'll check it out for you..

I've changed the instructions on this edit slightly as people seemed to be getting confused..
Reply With Quote
  #8  
Old 05-28-2006, 03:33 PM
moonclamp's Avatar
moonclamp moonclamp is offline
 
Join Date: May 2004
Location: London
Posts: 516
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm gonna install this to keep an eye on it ...

So far I've noticed that the small "quick reply and quote" button doesn't work.

Also, the texarea width means that a bottom scrollbar appears if a user is on 800x600 resolution
Reply With Quote
  #9  
Old 05-28-2006, 03:44 PM
Roms's Avatar
Roms Roms is offline
 
Join Date: Jun 2004
Location: Witness ProtectionProgram
Posts: 1,841
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Does this quote the message in the PM? (like Erwins old version?) Thanks
Reply With Quote
  #10  
Old 05-28-2006, 03:53 PM
.Tim's Avatar
.Tim .Tim is offline
 
Join Date: Jan 2005
Location: Oklahoma City
Posts: 353
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice, much better than the other but one complaint, none of the editor buttons work and it doesn't let you quote the pm. Only problems I see.
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 07:41 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.08833 seconds
  • Memory Usage 2,306KB
  • Queries Executed 23 (?)
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
  • (13)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
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete