Nonono.... Do it in another way!
The now following will make a lot of people here at least frown a bit...
My guess is you would indeed do best to make two news pages with visibility on hidden, but do not use anynews for this, use a third newspage and let the 'real' newspage collect athe newsposts of both hidden pages..
How?
Open view
Search for the string that gets the messages from the database,
$query_users = $database->query("SELECT group_id,title,active FROM ".TABLE_PREFIX."mod_news_groups WHERE section_id = '$section_id' ORDER BY position ASC");
If you change $section_id to the number of the hidden page it collects the news messages from another page
If you put in OR and add another one ...
$query_users = $database->query("SELECT group_id,title,active FROM ".TABLE_PREFIX."mod_news_groups WHERE section_id = '34' OR section_id = '73' ORDER BY position ASC");
But that would make all newspages load those posts...
But if you add some if and else shizzle ...
if ($section_id == "164"){
$showposts = 17; }
else if ($section_id == "20"){
$showposts = 166; }
else if ($section_id == "151"){
$showposts = 168; }
else{
$showposts = $section_id;
}
$query_users = $database->query("SELECT group_id,title,active FROM ".TABLE_PREFIX."mod_news_groups WHERE section_id = '$showposts' ORDER BY position ASC");
Something like that ....
(all numbers are ofcourse uit mn duim gezogen)