MyBB Community Forums

Full Version: User Info in threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All

how can i make the user info vertically

[Image: QRs0b23.jpg]
(2015-01-08, 12:44 PM).m. Wrote: [ -> ]see replies here
Thank you

this work only on guests and new members ??!!
How can i force this postbit style on old members?


I dont understand this Step:
Quote:If you want to put everybody on the classic postbit, run this query in PHPMyAdmin, or some other database manager:

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

If you want to put everybody on the horizontal postbit, run this query in PHPMyAdmin, or some other database manager:

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

Remember to make sure yout table prefix (mybb_ here) is correct.

Now, all your users will have your desired postbit style and will be unable to change it Smile Also make sure that 'ACP > Configuration > Show Thread Options > Post Layout' is what you want to force, as this is what will be used by guests and new users.
see SQL queries guidance. you have to execute below SQL query
UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0'