Dont know what I'm doing wrong but in trying to set up archives I get the dates showing up and that looks good but if I click on a date it just shows the same articles that are listed on local news page under each date....
Your current code that does the actual listing is this -
<cms:pages masterpage='localnews.php' paginate='1' access_level='4' limit='7'>
As explained in the docs about archives (http://www.couchcms.com/docs/concepts/u ... hives.html), you need to make it as follows to accommodate the archive period's dates -
<cms:pages masterpage='localnews.php' start_on=k_archive_date stop_before=k_next_archive_date paginate='1' access_level='4' limit='7'>
Hope it helps.