I've customized my postbit template (legacy) so that the first post has the class alt1 (white color), and the second has the class alt2 (blue color), the third post has the class alt1 (white color) ... and so on.
This is the code I've used (snip):
Now, if I use the Tachy Goes to Coventry feature, the forum members (who can't see the Tachy posts) will see that the posts are missing because the colors don't act like they should do. Let me give you an example.
This is what an admin/mod sees in a thread:
- Post #1 = White
- Post #2 = Blue
- Post #3 = White
- Post #4 = Blue (tachy post)
- Post #5 = White
- Post #6 = Blue
And this is what an ordinary member sees in a thread:
- Post #1 = White
- Post #2 = Blue
- Post #3 = White
- Post #4 = [hidden] (tachy post so it's invisible)
- Post #5 = White
- Post #6 = Blue
They will see two 'white' posts and will notice that one 'blue' post is missing. Is there something I can do to get around this problem? Perhaps rework the if-statement?
This is the code I've used (snip):
Code:
<td <if condition="$post[postcount] % 2 == 0">class="alt2"<else />class="alt1"</if>
This is what an admin/mod sees in a thread:
- Post #1 = White
- Post #2 = Blue
- Post #3 = White
- Post #4 = Blue (tachy post)
- Post #5 = White
- Post #6 = Blue
And this is what an ordinary member sees in a thread:
- Post #1 = White
- Post #2 = Blue
- Post #3 = White
- Post #4 = [hidden] (tachy post so it's invisible)
- Post #5 = White
- Post #6 = Blue
They will see two 'white' posts and will notice that one 'blue' post is missing. Is there something I can do to get around this problem? Perhaps rework the if-statement?
Comment