Quote:
Originally Posted by tbworld
Try this: (This has not been tested):
Template Showthread
Code:
<vb:comment>{vb:raw poll}</vb:comment>
For individual polls you will have to create a template conditional with your criteria around the same section of code.
------------------------------------
You can also do this by adding a plugin at hook: "showthread_complete"
Code:
// Hook: showthread_complete
// If poll ID = 3, then empty the $poll template contents.
if ($pollid == 3) {
$poll = '';
}
|
Thanks for the reply. Where abouts in showthread would I have to put that code, or can it go anywhere?