Image does not appear to be attached, but believe I understand what you're wanting. You'll need to edit the CB template PHP file. Please see the below change.
IN: components/com_comprofiler/plugin/templates/default/default.php
ON: Lines 384-388
FROM:
Code:
if ( $this->totalIsAllUsers ) {
echo $_CB_framework->getCfg( 'sitename' ) . " " . _UE_HAS . " <strong>" . $this->total . "</strong> " . _UE_USERS;
} else {
echo "<strong>" . $this->total . "</strong> " . _UE_USERPENDAPPRACTION . ":";
}
TO:
Code:
if ( $this->totalIsAllUsers ) {
//echo $_CB_framework->getCfg( 'sitename' ) . " " . _UE_HAS . " <strong>" . $this->total . "</strong> " . _UE_USERS;
} else {
//echo "<strong>" . $this->total . "</strong> " . _UE_USERPENDAPPRACTION . ":";
}