Nieuws weergave bij nieuwssysteem lumox
Heb onlangs een nieuwssysteem geinstalleerd http://www.getlumon.com
Nu heb ik daar een paar categorieen toegevoegd voor verschillende soorten van nieuws.
Alleen als ik nu naar die nieuws pagina gaat begint deze bij een eerste categorie. nu wil ik dat deze begint met een nieuwsoverzicht.
Ik bedoel dan met het nieuws onder elkaar de nieuwste bovenaan en zo aflopend.
Weet iemand of kan er even iemand naar kijken hoe ik dat voor elkaar kan krijgen?
Ik vraag dit hier omdat het forum daar niet werkt en omdat het daar een beetje uitgestorven lijkt
Is er niemand die kan of wil helpen
Geef de volgende pagina eens:
"Alleen als ik nu naar die nieuws pagina gaat begint deze bij een eerste categorie. nu wil ik dat deze begint met een nieuwsoverzicht."
en een pagina met 1 categorie.
Misschien dat er dan wel iemand op reageert
op index.php word alleen common.php de taal en het thema opgeroepen.
Na even zoeken en puzzelen denk ik dat het om de content_root.php gaat.
en ik denk in het volgende stuk.( zie hieronder)
Op het laatst geeft hij een error code mee voor als er niks in staat dat dan de tekst van "geen artikelen in deze categorie' word weer gegeven.
http://test.marcobrus.nl/nieuws/index.php
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
// Generate the left items
$amount = 8;
if(URI_ACTION == 'list')
{
$offset = (URI_PAGE > 0) ? URI_PAGE : 0;
}
else
{
$offset = URI_OFFSET;
}
$array = db_row("SELECT item_link,item_id,item_date FROM ".SITE_PREFIX."items WHERE item_cat = '".URI_CAT_ID."' AND item_date < '".CHECK."' ORDER BY item_date DESC LIMIT $offset,$amount");
list($total) = db_row("SELECT COUNT(1) FROM ".SITE_PREFIX."items WHERE item_cat = '".URI_CAT_ID."' AND item_date < '".CHECK."'");
$text = array();
$browse = '';
if($array)
{
foreach($array as $value)
{
$text[] = array(ucfirst($value[0]),get_url('view',URI_CAT,$value[1],$offset),null,$value[2]);
}
}
if($total[0] > $amount)
{
$last = ($total[0] / $amount) - 1;
if(URI_ACTION == 'list')
{
$current = ((URI_PAGE >= 0) ? URI_PAGE : 0) / $amount;
if($current < $last)
{
$browse = '<div class="subarchive"><a href="'.get_url(URI_ACTION,URI_CAT,($current + 1) * $amount,($current + 1) * $amount).'">></a></div>';
}
}
else
{
$current = URI_OFFSET / $amount;
if($current < $last)
{
$browse = '<div class="subarchive"><a href="'.get_url(URI_ACTION,URI_CAT,URI_PAGE,($current + 1) * $amount).'">></a></div>';
}
}
}
load('theme_sub',array($browse.ucfirst(URI_CAT),(count($text) > 0) ? $text : ERROR_1));
}
// Generate the left items
$amount = 8;
if(URI_ACTION == 'list')
{
$offset = (URI_PAGE > 0) ? URI_PAGE : 0;
}
else
{
$offset = URI_OFFSET;
}
$array = db_row("SELECT item_link,item_id,item_date FROM ".SITE_PREFIX."items WHERE item_cat = '".URI_CAT_ID."' AND item_date < '".CHECK."' ORDER BY item_date DESC LIMIT $offset,$amount");
list($total) = db_row("SELECT COUNT(1) FROM ".SITE_PREFIX."items WHERE item_cat = '".URI_CAT_ID."' AND item_date < '".CHECK."'");
$text = array();
$browse = '';
if($array)
{
foreach($array as $value)
{
$text[] = array(ucfirst($value[0]),get_url('view',URI_CAT,$value[1],$offset),null,$value[2]);
}
}
if($total[0] > $amount)
{
$last = ($total[0] / $amount) - 1;
if(URI_ACTION == 'list')
{
$current = ((URI_PAGE >= 0) ? URI_PAGE : 0) / $amount;
if($current < $last)
{
$browse = '<div class="subarchive"><a href="'.get_url(URI_ACTION,URI_CAT,($current + 1) * $amount,($current + 1) * $amount).'">></a></div>';
}
}
else
{
$current = URI_OFFSET / $amount;
if($current < $last)
{
$browse = '<div class="subarchive"><a href="'.get_url(URI_ACTION,URI_CAT,URI_PAGE,($current + 1) * $amount).'">></a></div>';
}
}
}
load('theme_sub',array($browse.ucfirst(URI_CAT),(count($text) > 0) ? $text : ERROR_1));
}
http://www.plaatscode.be/14473/ --> common.php
http://www.plaatscode.be/14474/ --> content_root.php
Als er nog andere pagina's nodig zijn hoor ik het wel.
Gewijzigd op 01/01/1970 01:00:00 door Roland Braat