I have some memberlists displayed. I would like to remove the ugly field descriptions ("Profile image:") showing next to the profile image. See what i mean here smeclub.net/component/comprofiler/usersl...Committee?Itemid=796
Edit your userlist and for Column 1 uncheck display of captions.
Also, I would like to edit the text at the top of the list which says "<sitename> has <no.> registered users" because it is misleading.
This is the following language string in your CB language files, which you can adjust as needed.
_UE_HAS and _UE_USERS or _UE_USERPENDAPPRACTION
The alternative is to edit this in source at the below location.
IN: components/com_comprofiler/plugin/templates/default/default.php
ON: Lines 384-388
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 . ":";
}