Ok, I've cooked a little something up for you. Since this was kind of like a request. See the attacked txt file for the hack...or follow the directions in this post:
Open /includes/functions_showthread and find:
Code:
// [START HACK='Awards/Medals/Cards by AnimeWebby' AUTHOR='AnimeWebby' VERSION='2.0' CHANGEID= 12 ]
// AWARDS IN POSTBIT
foreach($userawards AS $key => $useraward)
{
$userawardid = "award$useraward[awardid]";
if (!empty($post["$userawardid"]))
{
$userawardid_desc = $userawardid."_desc";
if ($post[$userawardid_desc] != '')
{
$useraward[description] = $post[$userawardid_desc];
}
eval('$post[\'userawards\'] .= "' . fetch_template('awards_bit') . '";');
}
}
// END AWARDS IN POSTBIT
// [END HACK='Awards/Medals/Cards by AnimeWebby' AUTHOR='AnimeWebby' VERSION='2.0' CHANGEID= 12 ]
replace with:
Code:
// [START HACK='Awards/Medals/Cards by AnimeWebby' AUTHOR='AnimeWebby' VERSION='2.0' CHANGEID= 12 ]
// AWARDS IN POSTBIT
foreach($userawards AS $key => $useraward)
{
$userawardid = "award$useraward[awardid]";
if (!empty($post["$userawardid"]))
{
$userawardid_desc = $userawardid."_desc";
if ($post[$userawardid_desc] != '')
{
$useraward[description] = $post[$userawardid_desc];
}
eval('$post[\'userawards\'] .= "' . fetch_template('awards_postbit') . '";');
}
}
// END AWARDS IN POSTBIT
// [END HACK='Awards/Medals/Cards by AnimeWebby' AUTHOR='AnimeWebby' VERSION='2.0' CHANGEID= 12 ]
created a new template called: "awards_postbit" and fill with:
Code:
<a href="award.php?u=$userinfo[userid]"><img src="$useraward[icon_url]" alt="$useraward[name]" height="17" width="17" border="0" /></a>
That will do it
**NOTE** you can change the size of the display of the images, by changing the height= and width= in the awards_postbit template. If you want to go further, I could probably do just about whatever you wanted in postbit just let me know. I take requests in most cases