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

Reply
 
Thread Tools
WoG - Quick Selective Quoting Details »»
WoG - Quick Selective Quoting
Version: 1.2.1, by WoGuziczek WoGuziczek is offline
Developer Last Online: Mar 2016 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.7.x Rating:
Released: 11-01-2008 Last Update: 01-11-2009 Installs: 44
Uses Plugins Auto-Templates
Additional Files  
No support by the author.

WoG - Quick Selective Quoting

Mod works on vB 3.7 and vB 3.8

What is it? / What does it do?
This is a small modification, which adds the possibility of selective quoting.
Highlight the text of your choice, click the appropriate button and the "Quick Reply" you receive the text to quote.


Features
  • Quick Reply Enabled = Mod Enabled
  • Including username and postid to quote
  • Support WYSIWYG & Standard Editor
  • Auto & Manual Position
  • Turn off the hack for specified usergroups


Technical
  • Phrases: 7
  • Plugins: 4
  • Templates : 1
  • Images to upload: 1
  • Files to upload: 0
  • SQL Queries: 0
  • Files to edit: 0
  • Templates to edit: 0*
* - if Auto-Position enabled

Tested & working on
  • Opera 9.62
  • Mozilla Firefox 3.0.4
  • Internet Explorer 7
  • Safari 3.2.1
  • Google Chrome 1.0.154.36


Installation
1-) Upload image quickquote.gif to your style directory. (example in attachment)
2-) Import product


Upgrade
1-) Import latest product and select Allow Overwrite
2-) If doing changes - revert template wog_quick_quote_button


You don't want Auto-Position?
1-) Log in to AdminCP
2-) vBulletin Options -> vBulletin Options -> WoG - Quick Selective Quoting
3-) Auto-Position -> Select No
4-) In templates: postbit and postbit_legacy insert variable $wog_qquote_button
to the position in which it is located the button "Quick Quote"


Versions
v1.2.1 - January 12 2009
- Mod tested & working on vBulletin 3.8
- Changed URL to modification thread.

v1.2.0 - December 20 2008
- FiX Bug - $template_hook[postbit_controls]. Thanks for RaidenDAWG2
- FiX Bug - not parsed phrase $vbphrase[wog_qquote_no].
- Add options Turn off the hack for specified usergroups.
- Renewal of the source code (support more browsers)

v1.1.0 - November 09 2008
- Add Auto & Manual Position
- Quick Reply Enabled = Mod Enabled (revised)

v1.0.0 - November 02 2008
- First release

ENJOY

Do you like this mod? Please click Mark as Installed and Nominate for MOTM

Not install = Not support :]

Show Your Support

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

Comments
  #42  
Old 12-20-2008, 09:21 PM
ejbreeze ejbreeze is offline
 
Join Date: Nov 2008
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for the upgrade. Does this fix the problem of adding a second qoute above the first in the message box?
Reply With Quote
  #43  
Old 12-21-2008, 08:26 AM
WoGuziczek WoGuziczek is offline
 
Join Date: Feb 2008
Location: Poland
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ahh... I forgot :/
Think of it. Thanks
Reply With Quote
  #44  
Old 12-21-2008, 10:10 AM
drsli's Avatar
drsli drsli is offline
 
Join Date: Jan 2008
Location: Germany
Posts: 128
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much for the excellent support! Now my Safari-users will be happy - it works perfectly now within this browser too!
Reply With Quote
  #45  
Old 12-21-2008, 10:51 AM
tidefans tidefans is offline
 
Join Date: Jul 2004
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have installed this. However, the code does not execute for me. even when I insert it manually, the script is not in the source code on the resulting page.

Any thoughts on what is going wrong here??

thanks.
Reply With Quote
  #46  
Old 12-21-2008, 11:18 AM
ejbreeze ejbreeze is offline
 
Join Date: Nov 2008
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have a code that I used on an old board. I can give it to you if it would help with placement.
Reply With Quote
  #47  
Old 12-21-2008, 12:06 PM
WoGuziczek WoGuziczek is offline
 
Join Date: Feb 2008
Location: Poland
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tidefans
I have installed this. However, the code does not execute for me. even when I insert it manually, the script is not in the source code on the resulting page.
tidefans, hmmm... probably does not work automatically insert code ... Make sure your template "showthread" found
Code:
<!-- quick reply -->
If you do not have - add

Quote:
Originally Posted by ejbreeze
I have a code that I used on an old board. I can give it to you if it would help with placement.
ejbreeze, You can enter I should be very grateful
Reply With Quote
  #48  
Old 12-21-2008, 01:29 PM
ejbreeze ejbreeze is offline
 
Join Date: Nov 2008
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This was the button:

PHP Code:
<img src="$skin_icon_url/quote.gif" title="Copy highlighted text to new message" alt="Copy highlighted text to new message" border="0" height="16" onMouseDown="copy_selection('$message->{author}','<#date $message->{time} format "$L{LONGDATE}"#>','#POST$message->{number}')" onMouseOver="javascript:if (style) style.cursor = 'pointer';"
and this was in the skin:

PHP Code:
function copy_selection(message_author,post_date,link_post,author_profile) { 
     if (
document.getSelection) { 
       
//for Netscape 
       
var str document.getSelection(); 
       
document.userpass.message.value+="\\quote_with_link{"+message_author+","+post_date+","+link_post+","+message_author+","+str+"}"
       
document.userpass.message.focus(); 
     } else if (
document.selection) { 
       
//for Internet Explorer 
       
var str document.selection.createRange().text
       
document.userpass.message.value+="\\quote_with_link{"+message_author+","+post_date+","+link_post+","+message_author+","+str+"}"
       
document.userpass.message.focus(); 
       var 
rng document.userpass.message.createTextRange(); 
       
rng.collapse(false); 
       
rng.select(); 
     } else { 
       
//display message if browser does not support above methods.
       
window.alert("Your browser does not support this feature"); 
       return; 
     } 
   } 
Reply With Quote
  #49  
Old 01-11-2009, 12:02 AM
Sunka Sunka is offline
 
Join Date: Mar 2008
Location: Croatia
Posts: 400
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is this MOD working on vBulletin v3.8.0?
Reply With Quote
  #50  
Old 01-11-2009, 03:56 PM
WoGuziczek WoGuziczek is offline
 
Join Date: Feb 2008
Location: Poland
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Sunka
Is this MOD working on vBulletin v3.8.0?
Yes, it works
See this thread: WoG - Quick Selective Quote
Reply With Quote
  #51  
Old 05-07-2009, 02:14 AM
fourat fourat is offline
 
Join Date: Mar 2008
Posts: 174
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi
when i make quick quoting for example 3 rows (lines) its make it one line !!
& if i make quick quoting for some large and colored words it make it small and no colored words !!
can you fix that ?
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:32 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.17750 seconds
  • Memory Usage 2,324KB
  • 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_code
  • (2)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
  • (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