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

Reply
 
Thread Tools
AdvanceReply For QuickReply Details »»
AdvanceReply For QuickReply
Version: 1.0.1, by almannai almannai is offline
Developer Last Online: Dec 2012 Show Printable Version Email this Page

Category: Add-On Releases - Version: 4.0.x Rating:
Released: 02-11-2010 Last Update: 03-04-2010 Installs: 88
Translations  
No support by the author.

What is this:
This mod will replace QuickReply with AdvanceReply.

Current Version:
1.0.1.





Features :
  • On/Off Switch.
  • Force show even if quickreply is disabled.
  • You can hide reply button from show thread page.
  • You can hide reply Aditional Options like attachment manager subscriptions etc.
Installation:


1. Download plugin.

2. Login to your vBulletin admincp.

3. Open "Plugins & Products", and go to "Manage Products".

4. Click on "[Add/Import Product]".

5. Import the XML file that you download. Make sure you set "allow
overwrite" to "yes".


Bugs fix:
ver 1.0.1
1.Fixed compatibility with vb 4.0.2.
2. mobile style problem
This fix as it is from TheLastSuperman where buttons would not function when clicking to reply or quote a post from within the mobile style.

In the sidebar_sthread plugin wrap everything below the first $AR4QR_enabled=0; with the if conditional supplied:


PHP Code:
$AR4QR_enabled=0;
if (
$vbulletin->session->vars['styleid'] != XX)
{
OTHER CODE

They need to change the XX in if ($vbulletin->session->vars['styleid'] != XX) to the styleid # of their mobile style.








Enjoy

Download Now

File Type: xml product-AdvanceReply_For_QuickReply.xml (24.3 KB, 500 views)
File Type: xml product-AdvanceReply_For_QuickReply_Fr.xml (24.6 KB, 59 views)

Screenshots

File Type: jpg AR4QR.jpg (52.6 KB, 0 views)
File Type: jpg viejo.jpg (31.3 KB, 0 views)
File Type: jpg AR4QR2.jpg (70.1 KB, 0 views)

Show Your Support

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

Comments
  #72  
Old 08-17-2010, 02:54 PM
LordVader LordVader is offline
 
Join Date: Aug 2009
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi

I added the new thread button using this hack.
https://vborg.vbsupport.ru/showthread.php?t=236685

And after i installed the hack above, i saw a link to this wonderful Upgrade so i installed this hack to upgrade the reply box.

I just wondered if i can keep the New Thread button as that would still be useful, but obviously i don't need the quick reply button any more if i'm using this hack.

Thanks

Will.
Reply With Quote
  #73  
Old 08-17-2010, 03:16 PM
LordVader LordVader is offline
 
Join Date: Aug 2009
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If its not possible & having thought about it i have come up with an idea

Would it be possible to add the option of giving the user a choice on your reply box of either Replying to the post or instead Creating a new thread ?

Thanks

Will.
Reply With Quote
  #74  
Old 08-17-2010, 03:24 PM
almannai almannai is offline
 
Join Date: Oct 2007
Posts: 889
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LordVader View Post
Hi

I added the new thread button using this hack.
https://vborg.vbsupport.ru/showthread.php?t=236685

And after i installed the hack above, i saw a link to this wonderful Upgrade so i installed this hack to upgrade the reply box.

I just wondered if i can keep the New Thread button as that would still be useful, but obviously i don't need the quick reply button any more if i'm using this hack.

Thanks

Will.

It is possible

you see anything between
PHP Code:
<vb:if condition="$show['largereplybutton']"
and its closing </vb:if> will be hidden

so you just need to move the button code bellow the next </vb:if>
Reply With Quote
  #75  
Old 08-17-2010, 03:50 PM
almannai almannai is offline
 
Join Date: Oct 2007
Posts: 889
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So how it goes?
Reply With Quote
  #76  
Old 08-17-2010, 03:54 PM
LordVader LordVader is offline
 
Join Date: Aug 2009
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry but you lost me.

This is the two bits of extra code i added earlier, i included the code above it as i think thats the code you are referring to but i'm unsure whay you want me to do to it.

This one makes the thread button appear at the top.


Code:
<vb:if condition="$show['largereplybutton']">
			<a href="newreply.php?{vb:raw session.sessionurl}p={vb:raw LASTPOSTID}&amp;noquote=1" 
class="newcontent_textcontrol" id="newreplylink_top"><vb:if condition="$show['closethread']"><span>+</span> {vb:rawphrase reply_to_thread}<vb:else />{vb:rawphrase closed_thread}</vb:if></a>

<!--- POST NEW THREAD BUTTON ABOVE START --->

<a href="newthread.php?{vb:raw session.sessionurl}do=newthread&amp;f={vb:raw thread.forumid}" rel="nofollow" class="newcontent_textcontrol" id="newthreadlink_top"  style="margin-left:10px;"><span>+</span> {vb:rawphrase post_new_thread}</a>

<!--- POST NEW THREAD BUTTON ABOVE END --->
And this one makes the new thread appear at the bottom.

Code:
<vb:if condition="$show['largereplybutton']">
		<a href="newreply.php?{vb:raw session.sessionurl}p={vb:raw LASTPOSTID}&amp;noquote=1" 
			class="newcontent_textcontrol" id="newreplylink_bottom"
			><vb:if condition="$show['closethread']"><span>+</span> {vb:rawphrase reply_to_thread}<vb:else />{vb:rawphrase closed_thread}</vb:if></a>

<!--- POST NEW THREAD BUTTON BELOW START --->

<a href="newthread.php?{vb:raw session.sessionurl}do=newthread&amp;f={vb:raw thread.forumid}" rel="nofollow" class="newcontent_textcontrol" id="newthreadlink_top"  style="margin-left:160px;"><span>+</span> {vb:rawphrase post_new_thread}</a>

<!--- POST NEW THREAD BUTTON BELOW END --->
Reply With Quote
  #77  
Old 08-17-2010, 04:52 PM
LordVader LordVader is offline
 
Join Date: Aug 2009
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hiya

I have included a .txt file with my entire showthread, please tell me where i am going wrong.

I have also included two screencaps, as you can see, i have got both the reply to thread buttons to show up & the top one is fine, but as you can see the bottom one has a mind of its own.

Thanks for helping

Will.
Attached Images
File Type: jpg 01.jpg (25.1 KB, 0 views)
File Type: jpg 02.jpg (59.1 KB, 0 views)
Attached Files
File Type: txt Showthread.txt (27.7 KB, 7 views)
Reply With Quote
  #78  
Old 08-17-2010, 05:44 PM
almannai almannai is offline
 
Join Date: Oct 2007
Posts: 889
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LordVader View Post
Hiya

I have included a .txt file with my entire showthread, please tell me where i am going wrong.

I have also included two screencaps, as you can see, i have got both the reply to thread buttons to show up & the top one is fine, but as you can see the bottom one has a mind of its own.

Thanks for helping

Will.

You mean the NEW THREAD BUTTON not reply button! Right?

try the attached
Attached Files
File Type: txt Showthread.txt (27.7 KB, 8 views)
Reply With Quote
  #79  
Old 08-17-2010, 06:29 PM
LordVader LordVader is offline
 
Join Date: Aug 2009
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes

The button to ( Post New Thread ) is completely out of place.

I tried the updated text you sent & unfortunately the button is still in the same place.

But it is fine, i have decided i will simply keep the button too ( Post New Thread ) at the beginning of the post, as that one is displayed correctly & i will remove the bottom one as it looks a mess displayed in its current location.

Thanks.

Will.
Attached Images
File Type: jpg 02.jpg (59.1 KB, 0 views)
Reply With Quote
  #80  
Old 08-17-2010, 07:00 PM
almannai almannai is offline
 
Join Date: Oct 2007
Posts: 889
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by LordVader View Post
Yes

The button to ( Post New Thread ) is completely out of place.

I tried the updated text you sent & unfortunately the button is still in the same place.

But it is fine, i have decided i will simply keep the button too ( Post New Thread ) at the beginning of the post, as that one is displayed correctly & i will remove the bottom one as it looks a mess displayed in its current location.

Thanks.

Will.
it is ok on the default style.

It must be due to the style you are using
Reply With Quote
  #81  
Old 08-18-2010, 09:42 AM
Madita Madita is offline
 
Join Date: Sep 2008
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi

I have installed this on 4.0.6 its great despite one thing.

If I collapse the Show Additonal Options then the signature Avatar will not be posted, its completely disabled.

But as it is Quick Reply, I think there is no need to show the Addtional Option below as its just lengthens the display, and as I have below the "Who has read the thread" module atacahed.

Can I ask you please to correct/adjust this disabeling of the Show Additonal Options - as there it is showing the signature as enabled, but when closing it its automaticall disabled

Its important for my forum, as many of my members espacially are creating their on signatures for a certain purpose and want to show them with each of their posting


Ahhh and a 2nd question....

in the former quicreply the textbox was stretched more to the forum widht !
Is there e possibility to stretch this advanced reply box a little bit more, too to the forum width ????
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 04:51 AM.


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.15899 seconds
  • Memory Usage 2,365KB
  • 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
  • (2)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
  • (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
  • (10)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