ads in timeline feed
Design and Skin Customization
Its possible. You can do it in the foreach loop that outputs your timeline. Figure out which template that is and it will be something like:
{foreach $_item as $_i}
.... .stuff
{/foreach}
{foreach $_item as $_i}
{if $_i@iteration % 2 == 0}
PUT YOUR ADVERT IN HERE
{/if}
.... .stuff
{/foreach}
That will put an add every 2 posts. change the % 2 to % 6 to do it every six times.