MyBB Community Forums

Full Version: MyAwards help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

I installed MyAwards but all the awards are showing on 1 line? This is in linear postbit.
How can I make it so say only 5 per line?

Thanks
can we have test url (link to a thread where you face such issue)
Try this:

Find in /inc/plugins/myawards.php
if($key == $post['uid'])
{

    foreach ($value as $key)
    {
		$awards .= "<img src=\"uploads/awards/".$cawards[$key]['awimg']."\" alt=\"".$cawards[$key]['awname']."\" title=\"".$cawards[$key]['awname']."\" />";
    }
}

Replace with
if($key == $post['uid'])
{
$count = 1;
    foreach ($value as $key)
    {
if($count % 5 == 0)
{
$awards .= "<br />";
}
		$awards .= "<img src=\"uploads/awards/".$cawards[$key]['awimg']."\" alt=\"".$cawards[$key]['awname']."\" title=\"".$cawards[$key]['awname']."\" />";
++$count;
    }
}