- Posts: 3
- Thank you received: 1
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Hello,cyber2001 wrote: Any luck in "hacking" the php core ?
I have found the file that displays the participants list, but after a few days trying i wasnt able to display the custom field in it.
Is there any temporarely way to fix this and display the custom field in the participants list ?
Which php code do i have to add to project it in icmodel.php ?
I need this feature because it is an essential part of our participants list.
$customfields = icagendaCustomfields::getListNotEmpty($reguser->userid);
if ($customfields)
{
foreach ($customfields AS $customfield)
{
$list_participants.= '<div class="small iC-italic-grey">';
$list_participants.= $customfield->cf_title . ': <strong>' . $customfield->cf_value . '</strong>';
$list_participants.= '</div>';
}
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.