The plugin will auto Integration with the Buddypress after activating the plugin. However, you need to change the permalink to the Post Name or any structure as wish want but not select default.

getkey-captcha

Then add the following code to the functions.php file of your theme.

add_filter('dwqa_get_author_link', 'dwqa_buddypress_profile_link', 10, 3);
function dwqa_buddypress_profile_link($url, $user_id, $user){
if(function_exists('bp_core_get_user_domain')){
return bp_core_get_user_domain($user_id);
}
return $url;
}