Hello,
I am using Joomla 2.5.11 and cb 1.9
in list view I want to change to not view the avatar thumbnail but the avatar image itself.
The cell of the user list ist saved in this variable $fieldView->value
components/com_comprofiler/plugins/templates/default/default.php
around line 490.
Code:
$html[] = '<div class="cbUserListFieldLine">'
. $title
. '<span class="cbListFieldCont cbUserListFC_' . $fieldView->name . '">'
. $fieldView->value
. '</span>'
. '</div>';
How can I change the value of
$fieldView->value for the avatar?
Thanks
Seagul