MyBB Community Forums

Full Version: Force classic post display on all users (except a few)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

How can I force all (except a few) users to see all posts in the classic view style?

Would you have to use an SQL query?
There is a plugin for this but I don't think you can select certain users to exclude.

You could run this query:

UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0' 

You could then set it for the users you want to have the horizontal postbit:

UPDATE `mybb_users` SET `classicpostbit` = '0' WHERE `uid` = 'X' 

X would be the user id that you want to not have the classic postbit. You would also want to edit the user cp template to remove the checkbox option to get rid of the postbit.

Hope this helps! Smile.

EDIT: ninja'd by yaldaram
Ok, thanks.

I was going to take away that option anyway.
I tried this but it does not show for guests, only members. My forums: http://www.xronize.com
Have you changed the setting in the Admin CP, the default post layout style?
(2013-01-07, 04:57 PM)JordanMussi Wrote: [ -> ]Have you changed the setting in the Admin CP, the default post layout style?

Ya i'm stupid thanks! + rep for u Smile