MyBB Community Forums

Full Version: different forum views of admin and user
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,

i want that the registered users do have the same view of the posts/threads as the admin have. I have the default theme installed. No other theme.

What the normal user see if he watches a post

[attachment=46594]

What the admin see if he watches the same post

[attachment=46595]

How can i have the user the same view of the posts as the admin have - without making the normal user admin?

What i found out seconds ago is that the guests what are not logged in have the same view as the admin. They have also the avatar left side and the statistics right side in the post. But the logged in normal users have all at the left side.
this is a UserCP -Setting
UserCP-> Options --> Display posts in classic mode.

classic mode is with left profile

so users can choose, which mode they want to see
Ok, so how can i make this automatic?
when you change your settings , for old ones they must do it manually from usercp or you do it through database.
you can use below query :
for classic postbit :
UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0'
for horizontal  :
UPDATE `mybb_users` SET `classicpostbit` = '0' WHERE `classicpostbit` = '1'
Nice Smile I try it in the data base and will give feedback
but your users can set it back if they want Wink
yes! The select query shows that exactly the four users what had the problems has it set to 1. Now after logout/login they have the same view. Thank you very much Smile
then everything is good