![]() |
|
|||||||
![]() |
|
|
Thread Tools | Display Modes |
|
#1
IP: 218.2.29.203
|
|||
|
|||
|
I would like to add my Latest Links and my Top Links to my index page instead of having a seperate page for them. How would I go about doing this?
|
|
#2
IP: 218.2.29.203
|
|||
|
|||
|
Try this:
Open index.php and find: Code:
echo $tpl->fetch('main.tpl', $id);
Code:
$top10 = $db->GetOne("SELECT * FROM {$tables['link']['name']} WHERE STATUS = 2 ORDER BY HITS DESC LIMIT 0,10");
$last10 = $db->GetOne("SELECT * FROM {$tables['link']['name']} WHERE STATUS = 2 ORDER BY ID DESC LIMIT 0,10");
$tpl->assign('top10', $top10);
$tpl->assign('last10', $last10);
Where you want the top10 list to appear add: Code:
{foreach from=$top10 item=link name=links}
{$link.URL}
{/foreach}
Code:
{foreach from=$last10 item=link name=links}
{$link.URL}
{/foreach}
|
|
#3
IP: 218.2.29.203
|
|||
|
|||
|
I've added the code and got it up and running, but, it's showing on all my pages, how can I limit it to the frontpage only?
|
![]() |
| Currently Active Users Viewing This Thread: 2 (0 members and 2 guests) | |
|
|