MyBB Community Forums

Full Version: 2 rank images
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, i want that 2 rank images is below username, not one is right and one is left.


http://www.upload.ee/image/5701500/Screenshot_54.png

Username
Rank image
Rank image
I Suppose you need a rank plugin for this.
[Image: 25549-1334517437-8.png]

This plugin may / maynot work, give it a try by changing compatibility to "18*"
http://mods.mybb.com/view/ranks
I have additional usergroups plugin.
(2016-04-03, 07:52 PM)hiroes Wrote: [ -> ]I have additional usergroups plugin.

Well, ok. But usergroup and rank are two different plugins.. Above one i linked is for rank
Plugin version is 1.2, last updated is 2012, I don't think that help me.
How about telling us which plugin exactly you're using? Anyways, there's most likely a variable it adds in postbit/postbit_classic template, you need to add a <br/> before it.
Plugin: Show Additional Group Images (1.2)

In postbit template I have this, I have change something?

<span class="smalltext">
{$post['usertitle']}<br />
{$post['groupimage']}
</span>
In the plugin file you can change:
		if($mybb->settings['postlayout'] == "classic")
		{
			$br = "<br />";
		}
		else
		{
			$br = "&nbsp;";
		}
to:
$br = "<br />"

Or you can install any recently updated plugin instead:
http://community.mybb.com/mods.php?action=view&pid=367
http://community.mybb.com/mods.php?action=view&pid=133
http://community.mybb.com/mods.php?action=view&pid=402

All of them add a variable to templates which makes editing easier.