bacemail
12-11-2011, 07:56 PM
Right now, I have ads appearing after the first post in a thread which looks like this...
<if condition="$post[postcount] == 1 AND !$bbuserinfo[userid]">
I want to make a conditional that also places an ad after the 3rd post.
Can I change the conditional by adding an OR?
<if condition="$post[postcount] == 1 || 3 AND !$bbuserinfo[userid]">
Thanks in advance.
--------------- Added 1323637862 at 1323637862 ---------------
I think I have it, but I'm to chicken to test it out live.
How does this look?
<if condition="$post[postcount] % $vboptions[maxposts] == 1 || $post[postcount] % $vboptions[maxposts] == 3 AND !$bbuserinfo[userid]">
<if condition="$post[postcount] == 1 AND !$bbuserinfo[userid]">
I want to make a conditional that also places an ad after the 3rd post.
Can I change the conditional by adding an OR?
<if condition="$post[postcount] == 1 || 3 AND !$bbuserinfo[userid]">
Thanks in advance.
--------------- Added 1323637862 at 1323637862 ---------------
I think I have it, but I'm to chicken to test it out live.
How does this look?
<if condition="$post[postcount] % $vboptions[maxposts] == 1 || $post[postcount] % $vboptions[maxposts] == 3 AND !$bbuserinfo[userid]">