try this in 373 edit bfa_postinfo.php and change lines from 462 - 467
HTML Code:
// For the "Sociable" plugin
if ( strpos($postinfo_string,'%sociable%') !== FALSE ) {
$sociable = ( (function_exists('sociable_html2') AND
function_exists( do_sociable() ) ) ? do_sociable() : "");
$postinfo = str_replace("%sociable%", $sociable, $postinfo);
}
to
HTML Code:
// For the "Sociable" plugin
if ( strpos($postinfo_string,'%sociable%') !== FALSE ) {
ob_start();
$sociable = ( (function_exists('sociable_html2') AND function_exists( do_sociable() ) ) ? do_sociable() : "");
$sociable = ob_get_contents();
ob_end_clean();
$postinfo = str_replace("%sociable%", $sociable, $postinfo);
}
if you want the sociable icons on a new line, in the atahualpa settings use eithor
HTML Code:
<br /> %sociable%
or
HTML Code:
%sociable% <br />
depending on where you want the break to be