![]() |
Obviously, I'm using vB 3.8
Any ideas? |
Ok so i checked it and it's because that variable isn't available in showthread, this is what you need:
Replace HTML Code:
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$FIRSTPOSTID" rel="nofollow"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td> HTML Code:
<td class="smallfont"><a href="#qrform"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td> |
It works!
But you're missing one little but very important thing. If you use the regular quick reply button, you're moved down to the quick reply box and the focus is inside that box so you know that you should start typing. After applying your instructions, the reply button indeed sends you to the quick reply box but the focus isn't on the box so newbie members could get confused. Any workaround for this? |
Not a quick fix without messing around with JS n stuff!, i'll take a look tonight when i get home.
|
Not tested but try adding this onclick event to the <a href...> tag:
Code:
onclick="document.getElementById('vB_Editor_QR_textarea').focus();" |
Unfortunately that isn't working, BirdOPrey5 :(
|
Quote:
|
Quote:
|
To be honest i think thats as good as you are going to get, i don't think you can set focus outside of the element, i tried numerous ways, so without having seperate JS for those two buttons you'll have to stick with just being sent to the form :|
|
We were on the right track but the trouble was the code I posted only worked in Chrome... It needed a little editing to work in Firefox and IE-
HTML Code:
<td class="smallfont"><a href="javascript:void(0);" onclick="location.hash = '#qrform'; document.getElementById('vB_Editor_QR_textarea').focus();"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td> Should just have an option for people who are visiting without javascript enabled. |
All times are GMT. The time now is 07:48 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|