MyBB Community Forums

Full Version: mybb {$bgcolor}
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Guys I have replaced {$bgcolor} with trow1 but the problem is it doesn't highlight unapproved threads. Any suggestions on what should I add that will highlight unapproved thread?
you using 1.7? if so .post.unapproved_post is what highlights unapproved posts for the post section
Thanks for your reply.  The thing is you can't just add it as it will use that style! I am looking for a way to only add it if the thread is unapproved one?

Gonna create a plugin for it if nobody posts any solution Smile


if($thread['visible'] == 0)
        {
            $bgcolor_new = "trow_shaded";
        }
        else
        {
            $bgcolor_new = "trow1";
        }