- Posts: 3
- Thank you received: 1
The developer takes a few days off for Summer vacation...
...and will be back with charged battery!
From 14 June to 29 June, 2025 included
During this period, assistance from developer will not be provided.
NEWS: iCagenda 4.0.0-alpha1 will be available for testing for users with a PRO subscription in July!
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.