MyBB Community Forums

Full Version: Group images not showing up
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I ran this code:

PHP Code:
UPDATE mybb_users SET classicpostbit = '1' WHERE classicpostbit = '0'

And when I run it, group images don't show up. They show up on my default theme, but not he one I ran the code on. Please help
So you ran a Query to Add the Group Image to the postbit?

Go To: Templates > Theme you are using's Templates > postbit > postbit_classic

You'll see code similar to this.
<span class="smalltext">
	{$post['usertitle']}<br />
	{$post['userstars']}
</span>

Add this to display the userbar's.
{$post['groupimage']}

It should look like this.
<span class="smalltext">
	{$post['usertitle']}<br />
	{$post['userstars']}
	{$post['groupimage']}
</span>

Save it and it will display the userbars.
(2015-06-21, 10:55 PM)Modifier Wrote: [ -> ]They show up on my default theme, but not the one I ran the code on.

This I do not understand. There is only one users table in the database, which is theme independent.

But when the solution of Nasyr works, who cares Big Grin .