Quote:
Originally Posted by Zachery
So, when you click on the big post reply buttons, you want it to just send you to the full reply?
|
There are two reply buttons, one in postbit marked "Reply" and one at the bottom of the thread marked "Reply to thread". Clicking on
either opens up Quick reply. At least one of those should directly open up
full reply. I'm guessing the "Reply to thread" button should go directly to Full reply because when I turn off quick reply the post bit "Reply" button disappears.
Only then will the "Reply to thread" button work correctly. Ultimately I need to just turn off Quick reply since it's causing
so many issues, especially with that pop-window that appears. Problem is I can't turn it off because then a hack for selective quoting also goes away. The only way I can think of to get around this would be to hard code some kind of "if" code for the quote button, but I've forgotten how do that, and if the quick reply worked correctly then I wouldn't need to anyway.
--------------- Added [DATE]1377064559[/DATE] at [TIME]1377064559[/TIME] ---------------
I think if I just turn off quick reply and put some kind of conditional around the quote button, then the quote button should still appear. Here is the code for the quote button (in red) can someone explain why it disappears when quick reply is turned off? It's supposed to appear next to the standard quote button.
Code:
<vb:if condition="$show['quickreply'] AND !$show['threadedmode']">
<a id="qr_{vb:raw post.postid}" class='quickreply' href="{vb:raw post.replylink}&noquote=1" rel="nofollow" title="{vb:rawphrase quick_reply_to_this_message}"><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"> </span>
</vb:if>
{vb:raw wog_quick_quote_button}
<vb:if condition="$post['replylink']">
<a id="qrwq_{vb:raw post.postid}" class="newreply" href="{vb:raw post.replylink}" rel="nofollow" title="{vb:rawphrase reply_with_quote}"><img id="quoteimg_{vb:raw post.postid}" src="{vb:raw vboptions.cleargifurl}" alt="{vb:rawphrase reply_with_quote}" /> <vb:if condition="$post['forwardlink']">{vb:rawphrase reply_to_private_message}<vb:else />{vb:rawphrase reply_with_quote}</vb:if></a>
<vb:if condition="$show['multiquote_post']"><span class="seperator"> </span></vb:if>
In case anyone needs it, here is the code for the quote button:
Code:
<a id="wog_qquote" href="javascript:wog_qq({vb:raw post.postid}, '{vb:raw post.wog_qquote_username}')" class="quickquote" rel="nofollow"><img id="wog_qquoteimg_{vb:raw post.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase wog_qquote_qbutton}" /> {vb:rawphrase wog_qquote_qbutton}</a>
<span class="seperator"> </span>