Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-17-2010, 08:29 AM
Popa Andrei's Avatar
Popa Andrei Popa Andrei is offline
 
Join Date: May 2008
Location: Romania/Petrosani
Posts: 367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Reply To Thread

How can y make it that when y press the Reply To Thread button to take me directly to the new reply windows instead of taking me down to the quick reply?
Thanks in advance.
Reply With Quote
  #2  
Old 02-18-2010, 08:06 PM
Popa Andrei's Avatar
Popa Andrei Popa Andrei is offline
 
Join Date: May 2008
Location: Romania/Petrosani
Posts: 367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bump
Reply With Quote
  #3  
Old 02-19-2010, 02:06 AM
Videx's Avatar
Videx Videx is offline
 
Join Date: Feb 2007
Posts: 3,085
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This behavior is by design now, and cannot be changed without modification. Unless they changed it in 4.0.2. Personally, I see no problem with it; we can press "go advanced" if we really need to.

There's at least one mod floating around that adds all kinds of bells and whistles to the quick reply, almost doing what you want to do.
Reply With Quote
  #4  
Old 07-02-2010, 09:51 AM
fulviods fulviods is offline
 
Join Date: Jan 2005
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

bump!

I really need that too! I think its normal that if we press on "reply" that we should go to advanced reply and not 100 pixels above to the quick reply!!! People knows that the quickreply is just there, so the button should bring us to the advanced form!!
Its really not logical!!

How can we do it ! ??

I dont want to disable the quickreply... i just want that buttons become useful
Reply With Quote
  #5  
Old 07-02-2010, 01:41 PM
Videx's Avatar
Videx Videx is offline
 
Join Date: Feb 2007
Posts: 3,085
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not everyone displays the Quickreply box, so it's not "100 pixels above" for everyone. I don't find it an issue, and I have simply told users they can double click the reply button to get the advanced editor.
Reply With Quote
  #6  
Old 07-08-2010, 05:17 PM
gopherhockey's Avatar
gopherhockey gopherhockey is offline
 
Join Date: Jul 2002
Posts: 202
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I do not like this behavior and have had to disable quick reply until fixed. Why have an advanced editor if you aren't going to use it by default.

Does anyone know of a hack that changes this back to what it should be - one click on reply or quote takes you to the full editor?
Reply With Quote
  #7  
Old 07-08-2010, 08:27 PM
Videx's Avatar
Videx Videx is offline
 
Join Date: Feb 2007
Posts: 3,085
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gopherhockey View Post
Why have an advanced editor if you aren't going to use it by default.
So that those who need it can use it. I use it maybe 30% of the time. But when a simple response is required, it's easier to use quick reply. Try it for a while, you might like it.
Reply With Quote
  #8  
Old 07-10-2010, 07:54 AM
Wilfred1 Wilfred1 is offline
 
Join Date: Jul 2009
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Due to another vb developers stuff up to make life hard for the support people and the few vb users that are left, what I have done is added an Adv Reply button to the post footer:

In your postbit_legacy template look for:
Code:
<a id="qr_{vb:raw post.postid}" class='quickreply' href="{vb:raw post.replylink}" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a> 
                    <span class="seperator">&nbsp;</span>
                    </vb:if>
Straight after that add this:
Code:
<vb:if condition="$show['quickreply'] AND !$show['threadedmode']">
                        <a class='quickreply' href="newreply.php?{vb:raw session.sessionurl}p={vb:raw post.postid}&amp;noquote=1" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="Advanced reply" /> Adv {vb:rawphrase reply}</a>
                        <span class="seperator">&nbsp;</span>
                    </vb:if>
I also added the word "Quick" just before the (vb:rawphrase reply) in the first block of code above to make it clear for the user what reply they are going to.

Hope this helps
Reply With Quote
  #9  
Old 07-10-2010, 10:36 AM
fulviods fulviods is offline
 
Join Date: Jan 2005
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Wilfred1 View Post
Due to another vb developers stuff up to make life hard for the support people and the few vb users that are left, what I have done is added an Adv Reply button to the post footer:

In your postbit_legacy template look for:
Code:
<a id="qr_{vb:raw post.postid}" class='quickreply' href="{vb:raw post.replylink}" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a> 
                    <span class="seperator">&nbsp;</span>
                    </vb:if>
Straight after that add this:
Code:
<vb:if condition="$show['quickreply'] AND !$show['threadedmode']">
                        <a class='quickreply' href="newreply.php?{vb:raw session.sessionurl}p={vb:raw post.postid}&amp;noquote=1" rel="nofollow"><img id="replyimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="Advanced reply" /> Adv {vb:rawphrase reply}</a>
                        <span class="seperator">&nbsp;</span>
                    </vb:if>
I also added the word "Quick" just before the (vb:rawphrase reply) in the first block of code above to make it clear for the user what reply they are going to.

Hope this helps
Thanks good idea !!!
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:42 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.04457 seconds
  • Memory Usage 2,242KB
  • Queries Executed 11 (?)
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)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete