There is an error in 2.0.0.5rc1 whereby it disregards the setting for "Show profile link in post bit"
the plugin for
postbit_display_complete that displays this information should use the value of the variable
$show['zointsprofile'] in its if statement and the other plugin for
postbit_display_complete should execute in order number 4 (before the aforementioned one)
the former should be:
Code:
if($show['zointsprofile'])
{
eval('$template_hook[\'postbit_userinfo_right\'] .= "' . fetch_template('zointsprofile_linkto_memberprofile') . '";');
}