Filesize 1.96 KB |
File Name latestgamelists.rar | # of Downloads 88
Comments
#5
10-07-2011
Lol - its ok - actually, this gave me an idea for a completely customised forum with plugins to match up with game section. Like on every forum page a side bar with latest games/champs/tournaments/king of the hill. etc etc. Could be cool.
The site don't jive? PRESS F5
#7
11-07-2011
Hi Play,
Like it says in the settings, you have to put the variable in the template yourself
{$latestgamelists_gallery}
So you open the template you want to show it on (Portal, Index, Forumdisplay) I guess and add the variable where you want the list to show.
Yea, its a drag having to put the variable in yourself, but this way you get to choose from all the options - I can't know in advance where you are going to put it.
Like it says in the settings, you have to put the variable in the template yourself
{$latestgamelists_gallery}
So you open the template you want to show it on (Portal, Index, Forumdisplay) I guess and add the variable where you want the list to show.
Yea, its a drag having to put the variable in yourself, but this way you get to choose from all the options - I can't know in advance where you are going to put it.
The site don't jive? PRESS F5
#9
14-07-2011
Style error? It validates....
Anyway, try changing to this in the template for the gallery:
[html]
<tbody style="{$collapsed['topgameslists_e']}" id="topgameslists_e">
<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong><a href="{$mybb->settings['bburl']}/games.php">All Games</a></strong></span></td>
</tr>
{$topgameslists_gallery_gallery}
</tbody>
[/html]
Anyway, try changing to this in the template for the gallery:
[html]
<tbody style="{$collapsed['topgameslists_e']}" id="topgameslists_e">
<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong><a href="{$mybb->settings['bburl']}/games.php">All Games</a></strong></span></td>
</tr>
{$topgameslists_gallery_gallery}
</tbody>
[/html]
The site don't jive? PRESS F5
#10
14-07-2011
leefish;7204 Wrote:Style error? It validates....
Anyway, try changing to this in the template for the gallery:
[html]
<tbody style="{$collapsed['topgameslists_e']}" id="topgameslists_e">
<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong><a href="{$mybb->settings['bburl']}/games.php">All Games</a></strong></span></td>
</tr>
{$topgameslists_gallery_gallery}
</tbody>
[/html]
Thanks.
I was not logged in before, but the quest was me
Btw: I fixed it with this code in the template:
PHP Code:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tbody>
<tr>
<td class="thead" colspan="6">
<div class="expcolimage">
<img src="{$theme['imgdir']}/collapse{$collapsedimg['latestgamelists']}.gif" id="latestgamelists_img" class="expander" alt="[-]" title="" />
</div>
<div><strong>Latest Games</strong></div>
</td>
</tr>
</tbody>
<tbody style="{$collapsed['latestgamelists_e']}" id="latestgamelists_e">
<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong><a href="{$mybb->settings['bburl']}/games.php" />All Games</a></strong></span></td>
</tr>
{$latestgamelists_gallery_gallery}
</tbody>
</table>
<br />