To remove the header image(s) from only the homepage, change (should be) line 158 in functions/bfa_header_config.php from
PHP Code:
if (strpos($header_items,'%image')!==false) {
to
PHP Code:
if (strpos($header_items,'%image')!==false AND !is_home()) {
If you have a static page as the homepage (you don't appear to, but others might) use this instead
PHP Code:
if (strpos($header_items,'%image')!==false AND !is_front_page()) {