Quote:
Originally Posted by Ezswo
I just have one question, I applied step 3 also, but this also creates an extra Reply-"button" to a PM. So, now you have two options under a PM, "Reply" and "Reply to PM"... of course the first one isn't working, but it's confusing. How can we get rid of this extra "button" in a PM, but retain it under "normal" posts. Added an attachment for clarity.
Thanks!
|
Thanks for pointing this out.
What you could do is to add a conditional in there to not display the extra reply button if it is a Private Message. To do this...in Step 3 where it says to add:
Code:
<!-- added advance reply -->
<vb:if condition="!$show['threadedmode']">
<a class='quickreply' href="newreply.php?{vb:raw session.sessionurl}p={vb:raw post.postid}&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"> </span>
</vb:if>
<!-- end added advance reply -->
Add this instead:
Code:
<!-- added advance reply -->
<vb:if condition="!$show['threadedmode'] and THIS_SCRIPT != 'private'">
<a class='quickreply' href="newreply.php?{vb:raw session.sessionurl}p={vb:raw post.postid}&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"> </span>
</vb:if>
<!-- end added advance reply -->
Hope this helps!