im currrently using this if condition to display an ad after the 5th post on each page <if condition="$post[postcount] % $vboptions[maxposts] == 5"> but i'd like to combine it with this <if condition="$post['islastshown']"> so it'd be if it's the 5th post and NOT the last one being shown, then display it how would I do so?
Couldn't you just use an AND statement? <if condition="($post[postcount] % $vboptions[maxposts] == 5) && !$post['islastshown']">
that works perfectly, thanks again shawn (i dont know how to code i just used them from the vbulletin tutorial and changed the numbers)