- Messages : 22
- Remerciements reçus 4
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!
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.
You found it before i answer
BTW, where do I control how many events are listed per page on the event list page?
Edit: Never mind, found it in the menu options
So, the event layout for list is for each event.I've managed to create my custom theme and it was pretty easy, however I haven't been able to get the month names configured to show up between the rows.
$array_months = array();
$array_years = array();
$event_m = JHtml::date($evt, 'F', null);
$event_y = JHtml::date($evt, 'Y', null);
if ( ! in_array($event_m, $array_months)
&& ! in_array($event_y, $array_years))
{
$array_months[] = $event_m;
$array_years[] = $event_y;
echo '<div class="month-header">' . $event_m . '</div>';
}
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.
$array_months = isset($array_months) ? $array_months : array();
$array_years = isset($array_years) ? $array_years : array();
$event_m = JHtml::date($evt, 'F', null);
$event_y = JHtml::date($evt, 'Y', null);
if ( ! in_array($event_m, $array_months)
&& ! in_array($event_y, $array_years))
{
$array_months[] = $event_m;
$array_years[] = $event_y;
echo '<div class="month-header">' . $event_m . '</div>';
}
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.
$array_monthyear = isset($array_monthyear) ? $array_monthyear : array();
$event_m = JHtml::date($evt, 'F', null);
$event_y = JHtml::date($evt, 'Y', null);
if ( ! in_array($event_m . $event_y, $array_monthyear))
{
$array_monthyear[] = $event_m . $event_y;
echo '<div class="month-header"><h4>' . $event_m . '</h4></div>';
}
Connexion ou Créer un compte pour participer à la conversation.
Connexion ou Créer un compte pour participer à la conversation.