MyBB Community Forums

Full Version: avatars did not show in postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2016-11-14, 07:02 AM)day-day Wrote: [ -> ]Avatars show for me in the postbit just fine

And for myself.
Did you try a hard refresh? Cntrl + F5 on Windows.
ohhhh
now i know that avatars didnt show just for members
^ check options at your user control panel of your forum [eg.]
Thread View Options consists of avatars related option for the members

Edit: you can try using below SQL queries so that avatars are shown for all the members
ALTER TABLE `mybb_users` CHANGE `showavatars` `showavatars` tinyint(1) NOT NULL default '1'; 

UPDATE `mybb_users` SET `showavatars` = '1' WHERE `showavatars` = '0'; 

see also common sql queries guidance
(2016-11-14, 02:57 PM).m. Wrote: [ -> ]^ check options at your user control panel of your forum [eg.]
Thread View Options consists of avatars related option for the members

Edit: you can try using below SQL queries so that avatars are shown for all the members
ALTER TABLE `mybb_users` CHANGE `showavatars` `showavatars` tinyint(1) NOT NULL default '1'; 

UPDATE `mybb_users` SET `showavatars` = '1' WHERE `showavatars` = '0'; 

see also common sql queries guidance

tnx a bunch
it worked Heart
So basically OP's issue was he disabled avatars from showing? [Client-Side]
Pages: 1 2