as long as you have this surrounding the rating thing it should hide it you have already voted and you need to do "in vBulletin Options > Poll and Thread Rating Options, set "Allow Thread Rating Vote Changes" to No"
Code:
<if condition="$show['threadrating']">
<if condition="$show['ratethread']">
</if>
</if>
since someone said this didn't work, you could try modifying it to this (untested but should work):
Code:
<if condition="$show['threadrating']">
<if condition="$show['ratethread'] && $threadinfo['vote']==NULL">
</if>
</if>
if it still shows it, I'm not sure what else to suggest
DPSR, you mean in a JavaScript alert message box? this would then make it a two-click thread rating system as the user would have to click 'OK' + clicking the rating they wanted.. I can tell you how if you really want it though
|