Quote:
Originally Posted by blueperspective
Hi everyone.
I've just started a thread on this problem on vb.com, but I was reffered here by a member. The thread is here: https://www.vbulletin.com/forum/show...sts-under-post
The idea is that I've just enabled the posibility of leaving a reply for guests. Unfortunatelly, vBulletin doesn't have the Quick-Reply window for guests and that's a minus in my opinion. Any ideea on how can I add a short message that will appear under each post for guests only, informing them that they can click Reply to thread in order to respond to that specific topic ?! I know that could be done by adding a lines of code or smth, but I don't know what code and where to add it. I found a good post about this problem here: http://www.mydigitallife.info/how-to...-in-vbulletin/
The article is good, but I don't want the message on home page or footer like they say there.. I just want it under each post.
Any help, please ?!
|
The
Code:
postbit_signature_start
or the
Code:
postbit_messagearea_start
template hook is probably the best place.
You can use this condition to show a message only to guests.
Code:
<vb:if condition="$show['guest']">Show this to guest only</vb:if>