Quote:
Originally Posted by kh99
Well, looking at Joe's mod for removing the report button: https://vborg.vbsupport.ru/showthread.php?t=268799 it looks like if $post['reportthreadid'] > 0 then the post has been reported. But I don't think you can put conditionals in a CSS template, so you'd have to do something like include a class only if that's true, like maybe:
Code:
<div class="<vb:if condition="$post['reportthreadid'] > 0"> reported_post </vb:if>">...
|
That could work.

Will try it out tomorrow or so.