MyBB Community Forums

Full Version: Different Post Layout For Even and Odd Numbered Posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm curious to know if it'd be possible to display a different post layout for even and odd numbered posts?

For example, on even numbered posts I'd like the Avatar area to display on the right side, and then with the next post being an odd number I'd like the avatar area to display on the left side.

Would this by chance require core file edits? Or could it be done using a plugin like Template Conditionals. If so, how would I go about calculating when to show the right side display and the left side display? 

Thanks in advance!
Could probably be done with Template Conditionals. I haven't used template conditionals, but I can show you the raw PHP and you could probably figure it out.
if($postcounter % 2 == 1)
{
// Odd numbered post
}
else
{
// Even numbered post
}
YOU ARE A GENIUS THANK YOU!

It worked, I just had to wrap it in the correct coding for Template Conditionals and BAM. Smile