Catbodi
Junior Member
Posts: 6
Joined: Oct 2011
Reputation: 0
|
Awards by "Joined Date", How to fix?
Hey Guys, I have the Award's Plugin from here and something weird is going on.
At first Awards didn't even showup in the Post Bit.
I followed this tutorial for the fix (Second Post down)
http://mybbsource.com/thread-6008.html
Then my awards started showing up BESIDE the "Joined Date"
I want it below that line. How could I fix it?
Thank you.
|
|
| 02-11-2012, 10:14 AM |
|
Fusionatic
Junior Member
Posts: 9
Joined: Feb 2012
Reputation: 0
|
RE: Awards by "Joined Date", How to fix?
Hey,
I just had the same problem, but I've fixed it. Here is the solution:
FIND:
Code:
$awards[$to].="<a href='award.php?id={$award[gid]}' title='{$award[name]}'><img src='{$mybb->settings['bburl']}/images/awards/$award[image]' title='{$award['description']}' border='0'/></a> ";
REPLACE WITH:
Code:
$awards[$to].="<br \><a href='award.php?id={$award[gid]}' title='{$award[name]}'><img src='{$mybb->settings['bburl']}/images/awards/$award[image]' title='{$award['description']}' border='0'/></a> ";
Mainly all I did was adding a brake so it goes beneath it.
Hope it helped!
(This post was last modified: 02-12-2012, 08:22 AM by Fusionatic)
|
|
| 02-12-2012, 08:21 AM |
|
Uzi
Graphic Designer
Posts: 66
Joined: Feb 2012
Reputation: 6
|
RE: Awards by "Joined Date", How to fix?
Go to your Admin CP > Themes & Templates > Templates > Currently in-use theme > Postbit templates.
Expand the template and find;
Add line break (<br \>) to the end;
Code:
$awards[$to].="<br \>
Keep the rest of the template intact. The above reply pretty much resolved your issue, although if there's anything else then be sure to contact me through the private messaging system and I'll provide you with support.
Take care.
|
|
| 02-14-2012, 05:38 AM |
|