You#d have to edit bfa_postinfo.php for that
Replace
PHP Code:
// Author website link
if (strpos($postinfo_string,'%author-link%')!==FALSE) {
ob_start(); the_author_link(); $author_link = ob_get_contents(); ob_end_clean();
$postinfo = str_replace("%author-link%", $author_link, $postinfo);
}
with
PHP Code:
// Author website link
if (strpos($postinfo_string,'%author-link%')!==FALSE) {
ob_start();
if (get_the_author_url()) {
echo '<a target="_new" href="' . get_the_author_url() .
'" title="' . sprintf(__("Visit the website of %s"), get_the_author()) .
'" rel="external">' . get_the_author() . '</a>';
} else {
the_author();
}
$author_link = ob_get_contents(); ob_end_clean();
$postinfo = str_replace("%author-link%", $author_link, $postinfo);
}