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

Reply
 
Thread Tools
Quick Reply / Quick Edit Toolbars Details »»
Quick Reply / Quick Edit Toolbars
Version: 1.0.0.Jan, by TrucLinh TrucLinh is offline
Developer Last Online: Feb 2015 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.8.x Rating:
Released: 01-07-2009 Last Update: 01-12-2009 Installs: 167
Uses Plugins Template Edits Auto-Templates
 
No support by the author.

Quick Reply / Quick Edit Toolbars


Product features


. Show Smilies, Font BB Code, Allignment BB Code, and more...

. Quick Reply \ Quick Edit Control Panel
, easy to change (Show or Hide) options.

. Install quickly and easily with only one template to modify (for now).


Screenshots











Modify templates
(1 template, for Quick Edit)

. Open postbit_quickedit template, (no mod install)
_Open the text-code file, then copy and paste... into your template
Quote:
change.template(postbit_quickedit)with.this.txt

OR...

. Open
postbit_quickedit template, Find: (with mod install)
HTML Code:
$vbphrase[remove_text_formatting]" /></div></td>
. Below add
HTML Code:
            <if condition="$vboptions[quickedit_active]"><!-- quick edit toolbars --><if condition="$show['font_bbcode'] OR $show['size_bbcode']">
                <td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
            </if>
            <if condition="$vboptions[qe_font_bbcode]"><if condition="$show['font_bbcode']">
                <td><div class="imagebutton" id="{$editorid}_popup_fontname" title="$vbphrase[fonts]">
                    <table cellpadding="0" cellspacing="0" border="0">
                    <tr>
                        <td class="popup_feedback"><div id="{$editorid}_font_out" style="width:91px">&nbsp;</div></td>
                        <td class="popup_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
                    </tr>
                    </table>
                </div></td>
            </if></if>
            <if condition="$vboptions[qe_size_bbcode]"><if condition="$show['size_bbcode']">
                <td><div class="imagebutton" id="{$editorid}_popup_fontsize" title="$vbphrase[sizes]">
                    <table cellpadding="0" cellspacing="0" border="0">
                    <tr>
                        <td class="popup_feedback"><div id="{$editorid}_size_out" style="width:25px">&nbsp;</div></td>
                        <td class="popup_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
                    </tr>
                    </table>
                </div></td>
            </if></if>
            <if condition="$vboptions[qe_align_bbcode]"><if condition="$show['align_bbcode']">
                <td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
                <if condition="$stylevar['textdirection'] == 'ltr'">
                <td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
                <else />
                <td><div class="imagebutton" id="{$editorid}_cmd_justifyright"><img src="$stylevar[imgdir_editor]/justifyright.gif" width="21" height="20" alt="$vbphrase[align_right]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_justifycenter"><img src="$stylevar[imgdir_editor]/justifycenter.gif" width="21" height="20" alt="$vbphrase[align_center]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_justifyleft"><img src="$stylevar[imgdir_editor]/justifyleft.gif" width="21" height="20" alt="$vbphrase[align_left]" /></div></td>
                </if>
            </if></if>
            <if condition="$vboptions[qe_list_bbcode]"><if condition="$show['align_bbcode'] OR $show['list_bbcode']">
                <td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
            </if>
            <if condition="$show['list_bbcode']">
                <td><div class="imagebutton" id="{$editorid}_cmd_insertorderedlist"><img src="$stylevar[imgdir_editor]/insertorderedlist.gif" width="21" height="20" alt="$vbphrase[ordered_list]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_insertunorderedlist"><img src="$stylevar[imgdir_editor]/insertunorderedlist.gif" width="21" height="20" alt="$vbphrase[unordered_list]" /></div></td>
            </if></if>
            <if condition="$show['align_bbcode'] OR $show['list_bbcode']">
                <if condition="$vboptions[qe_indent_bbcode]"><if condition="$stylevar['textdirection'] == 'ltr'">
                <td><div class="imagebutton" id="{$editorid}_cmd_outdent"><img src="$stylevar[imgdir_editor]/outdent.gif" width="21" height="20" alt="$vbphrase[decrease_indent]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_indent"><img src="$stylevar[imgdir_editor]/indent.gif" width="21" height="20" alt="$vbphrase[increase_indent]" /></div></td>
                <else />
                <td><div class="imagebutton" id="{$editorid}_cmd_outdent"><img src="$stylevar[imgdir_editor]/indent.gif" width="21" height="20" alt="$vbphrase[decrease_indent]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_indent"><img src="$stylevar[imgdir_editor]/outdent.gif" width="21" height="20" alt="$vbphrase[increase_indent]" /></div></td>
                </if></if>
            </if><!-- quick edit toolbars --></if>
. Next in the same template, Find:
HTML Code:
$vbphrase[wrap_quote_tags]" /></div></td>
. Below add
HTML Code:
            <if condition="$vboptions[quickedit_active]"><!-- quick edit toolbars --><if condition="$show['code_bbcode'] OR $show['html_bbcode'] OR $show['php_bbcode']">
                <td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>                
                <if condition="$vboptions[qe_code_bbcode]"><if condition="$show['code_bbcode']">
                    <td><div class="imagebutton" id="{$editorid}_cmd_wrap0_code"><img src="$stylevar[imgdir_editor]/code.gif" width="21" height="20" alt="$vbphrase[wrap_code_tags]" /></div></td>
                </if></if>
                <if condition="$vboptions[qe_html_bbcode]"><if condition="$show['html_bbcode']">
                    <td><div class="imagebutton" id="{$editorid}_cmd_wrap0_html"><img src="$stylevar[imgdir_editor]/html.gif"  width="21" height="20" alt="$vbphrase[wrap_html_tags]" /></div></td>
                </if></if>
                <if condition="$vboptions[qe_php_bbcode]"><if condition="$show['php_bbcode']">
                    <td><div class="imagebutton" id="{$editorid}_cmd_wrap0_php"><img src="$stylevar[imgdir_editor]/php.gif" width="21" height="20" alt="$vbphrase[wrap_php_tags]" /></div></td>
                </if></if>
            </if>
            <if condition="$vboptions[qe_wysiwygsmilies]"><if condition="$show['wysiwygsmilies']">
                <td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
                <td><div class="imagebutton" id="{$editorid}_popup_smilie" title="$vbphrase[smilies]">
                    <table cellpadding="0" cellspacing="0" border="0">
                    <tr>
                        <td><img src="$stylevar[imgdir_editor]/smilie.gif" alt="" width="21" height="20" /></td>
                        <td class="alt_pickbutton"><img src="$stylevar[imgdir_editor]/menupop.gif" width="11" height="16" alt="" /></td>
                    </tr>
                    </table>
                </div></td>
            </if></if>
                <if condition="$vboptions[qe_undoredo]"><td><td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_undo"><img src="$stylevar[imgdir_editor]/undo.gif" width="21" height="20" alt="$vbphrase[undo]" /></div></td>
                <td><div class="imagebutton" id="{$editorid}_cmd_redo"><img src="$stylevar[imgdir_editor]/redo.gif" width="21" height="20" alt="$vbphrase[redo]" /></div></td></if>
            <td width="100%">&nbsp;</td>
            <if condition="$vboptions[qe_extrabuttons]"><if condition="$vBeditTemplate['extrabuttons'] != '' ">
                <td><img src="$stylevar[imgdir_editor]/separator.gif" width="6" height="20" alt="" /></td>    
                $vBeditTemplate[extrabuttons]
            </if></if><!-- quick edit toolbars --></if>


. Save your template.

. Enjoy!

Version [3.7.x] Quick Reply / Quick Edit Toolbars [v1.0.0.jan]


Install Update Notes:
_uninstall, then install new update.
_edit your template, then update new template show about.

Update Notes: (1)

_adds Quick Edit Control Panel
_adds Quick Reply Control Panel

_adds auto-template (3) 'quickreply_disablesmilies, quickreply_a_toolbars, quickreply_b_toolbars'
_adds edit-template (1)
_clean-up code and template
_changes plugin title and phrase name




TrucLinh

Download Now

File Type: zip QREToolbars.zip (11.1 KB, 884 views)

Show Your Support

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

Comments
  #22  
Old 02-05-2009, 05:22 PM
rapidphim rapidphim is offline
 
Join Date: Feb 2007
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

awesome work. this hack is not conflict with the mViet keyboard... great work!
Reply With Quote
  #23  
Old 02-05-2009, 09:37 PM
Sc00by22 Sc00by22 is offline
 
Join Date: Mar 2008
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works great, thanks, I added more BB Codes from the AdminCP and now they are longer then the quick reply box, how can I make it wider?
Reply With Quote
  #24  
Old 02-06-2009, 01:46 AM
ocer_coc ocer_coc is offline
 
Join Date: Apr 2008
Posts: 2
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bạn này ở VN hả ?

are you from VN?
Reply With Quote
  #25  
Old 02-07-2009, 04:23 AM
TrucLinh's Avatar
TrucLinh TrucLinh is offline
 
Join Date: Aug 2006
Posts: 118
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Il Pompa View Post
Infinitely thanks you were very kind!

Why the smilies does not appear in blog? Can you help me to solve this problem?:up:
Also in guest's messages does't appear nothing
working on it...

Quote:
Originally Posted by Sc00by22 View Post
Works great, thanks, I added more BB Codes from the AdminCP and now they are longer then the quick reply box, how can I make it wider?
. Go to Style Manager > click button [Go] > look for 'Sizes and Dimensions'
_find 'User Control Panel Message Area Width (pixels) ' [ 380px ] change to [ 480px ]

Quote:
Originally Posted by rapidphim View Post
awesome work. this hack is not conflict with the mViet keyboard... great work!
..................

Quote:
Originally Posted by ocer_coc View Post
bạn n?y ở VN hả ?

are you from VN?
Yes, long times, but not now...

Q.Nhu
Reply With Quote
  #26  
Old 02-09-2009, 10:46 PM
rapidphim rapidphim is offline
 
Join Date: Feb 2007
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<span style="text-decoration: line-through">Can you please guide how to adjust the editor box for Blog?</span>

Edit: I found the solution from above thread. Thanks.
Reply With Quote
  #27  
Old 02-18-2009, 10:23 AM
Forum Lover Forum Lover is offline
 
Join Date: Jun 2007
Location: Sydney
Posts: 503
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

will it work for vB bLog too?
Reply With Quote
  #28  
Old 02-18-2009, 02:20 PM
rapidphim rapidphim is offline
 
Join Date: Feb 2007
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Forum Lover View Post
will it work for vB bLog too?
Yes, it does work on blog and PM too.
Reply With Quote
  #29  
Old 02-20-2009, 01:18 AM
gmerin gmerin is offline
 
Join Date: Dec 2008
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Lets see if i got this correctly:

(1) Go to AdminCP, then to Plugins & Products, then Manage Products, then
(2) Add/Import Product file product-QREToolbars.xml
(3) Go to Styles & Templates, then to Download / Upload Styles, then
(4) Import Style XML File QREToolbars-style.xml
a. Merge Into Style - pick any existing style
b. Select (click checkbox) Ignore Style Version
(5) press Import button

did i get it right?
Reply With Quote
  #30  
Old 02-20-2009, 03:15 AM
rapidphim rapidphim is offline
 
Join Date: Feb 2007
Posts: 733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

gmerin: what are you trying to do?
Reply With Quote
  #31  
Old 03-05-2009, 01:58 PM
AteNa AteNa is offline
 
Join Date: Oct 2008
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks , installed ..

AteNa
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.09690 seconds
  • Memory Usage 2,390KB
  • Queries Executed 26 (?)
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
  • (4)bbcode_html
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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
  • (1)postbit_attachment
  • (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_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