I had this problem, but resolved it by editing the copy of atoz-template.php in the themes directory.
In atoz-template.php delete everything all the way down to (but not including):
<!-- ######################################
HEADER END & PAGE CONTENT START
###########################################
-->
It’s quite a few lines.
Then paste in the first php tag from page.php in your chosen template. It may just be <php get_header(); ?>
. I’m using Academica, so I pasted:
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
}
get_header(); ?>
Then save, and hopefully that should work: it worked for me, and didn’t seem to affect any of the functionality.
Good luck, and don’t forget to take a backup of atoz-template.php before editing!