If you use the built in Atahualpa SEO and set Dashboard->Settings->Reading->Front Page displays: to a static page, the meta title created will only show the blog title, not what you specify at ATO->Configure SEO->Meta Title Tag format. This fix corrects this issue
edit bfa_meta_tags.php and change lines 75-82 from
HTML Code:
#if ( is_home() ) { if ( is_front_page() ) { return get_bloginfo('name'); } else { if ( is_single() OR is_page() ) {
HTML Code:
if ( is_home() ) { return get_bloginfo('name'); } else { if ( is_single() OR is_page() OR is_front_page() ) {