Written in response to something umcadop wrote.
The RSS Just better plugin I mentioned. Use these 2 feeds with that http://yle.fi/uutiset/rss/luetuimmat.rss?osasto=news and http://yle.fi/uutiset/rss/uutiset.rss?osasto=news - This will give you the news with that plugin.
link
Written in response to Hiding page templates:
You keep the comments removed from the templates you don't want to appear. However to keep them still working, copy everything in your page.php to a new file called page-default.php and then add these lines in your page.php
<?php
if ( is_front_page() ) { include('page-home.php'); }
elseif ( is_page(22) ) { include('page-something.php'); }
elseif ( is_page(48) ) { include('page-whatever.php'); }
else{ include('page-default.php'); }
?>
These are mere examples. You need to replace and edit the code as per your needs. This way a specific template will always be loaded for your special pages and default page for all other type of pages.
link