Ok, put this script in current active theme’s functions.php :
///////////////////////////////////////////////////
// User Pro Badges Integration ////////////////////
///////////////////////////////////////////////////
add_filter('wpdiscuz_after_label', 'wpdiscuz_upb_integration', 110, 2);
function wpdiscuz_upb_integration($afterLabelHtml, $comment) {
if ($comment->user_id && class_exists('userpro_api')) {
$afterLabelHtml .= userpro_show_badges($comment->user_id, $inline = true);
}
return $afterLabelHtml;
}