Ha yes, I see the theme is missing a check.
In `inc_footer.php` find this line:
`printCustomPageURL(gettext('Archive View'), 'archive', '', ' | ');`
and replace it with this:
`
if ( getOption('show_archive') ) {
printCustomPageURL(gettext('Archive View'), 'archive', '', ' | ');
}
`