Home N-13 News Forums Help Search
RegisterForgot password?
How to add image to post necklacesdiscou
Known bugs - 4.0.3 necklacesdiscou

Latest N-13 News 4.0.3

What is N-13 News?
Where can I get help?
Known bugs

Forums Help & Support showing Archived and not Archived news
Master_je
Posted on 23 Aug 2010, 11:29:31

Access: Member
Total Posts: 28
Joined: 2009-06-05

how can i show archive and unarchived news at one page?? i tried every thing, but nothing seems to work. it tried this.

Code:
<?php 
    $archives 
= '0';
    
$archives = '1';
    
$template = 'Nieuws';
    
$cat[] = 'Heerde_Algemeen_Nieuws';
    include 
'nieuws/index.php'; 
?>

but then only the archived news i showed.

Code:
<?php 
    $archives 
= '1';
    
$template = 'Nieuws';
    
$cat[] = 'Heerde_Algemeen_Nieuws';
    include 
'nieuws/index.php'; 
?>

Code:
<?php 
    $archives 
= '0';
    
$template = 'Nieuws';
    
$cat[] = 'Heerde_Algemeen_Nieuws';
    include 
'nieuws/index.php'; 
?>

this seems to work but when i click on a news article i get 2 of the same:S klik here and you can see it. i hope you have a solution for this
#2792
Last edited by Master_je at 2010-08-25 13:33:08 Reason:
Chris
Posted on 25 Aug 2010, 17:35:47

Access: Admin
Total Posts: 1395
Joined: 2006-05-19

There is no ideal way to solve this currently. What you could do however is make one of the includes static like so


Code:
<?php 
    $archives 
= '1';
    
$template = 'Nieuws';
    
$cat[] = 'Heerde_Algemeen_Nieuws';
    include 
'nieuws/index.php'; 
?>

Code:
<?php
    $static 
= true;
    
$archives = '0';
    
$template = 'Nieuws';
    
$cat[] = 'Heerde_Algemeen_Nieuws';
    include 
'nieuws/index.php'; 
?>


That way when you click on a news article it'll only show that article then some headlines below it.

Or you can make it so that when viewing a single news article it doesn't show the second include like so

Code:
<?php
if(!$_GET['id']){
    
// this include will only show when not viewing a single article
    
$static = true;
    
$archives = '0';
    
$template = 'Nieuws';
    
$cat[] = 'Heerde_Algemeen_Nieuws';
    include 
'nieuws/index.php'; 
}
?>
#2800
Master_je
Posted on 25 Aug 2010, 18:14:43

Access: Member
Total Posts: 28
Joined: 2009-06-05

Thanks it works :D thank you so much
#2804
Network-13.com © 2013