- Posts: 6
- Thank you received: 3
Day | Time | Event | Location |
Monday | 9:45 AM | Subject # 1 | Class # 1 |
Tuesday | 10:15 AM | Subject # 2 | Class # 2 |
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.
Removed previous comment, as i see you have found the way!1. I created a "Weekly" template. I made a copy the folder (\components\com_icagenda\themes\packs\default\) and called it weekly. Moreover, I created the xml file (\components\com_icagenda\themes\weekly.xml)
2. I tried implementing my changes in the script (\components\com_icagenda\themes\packs\weekly\weekly_events.php)
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
require $tpl_events;
// No direct access to this file
defined('_JEXEC') or die();
// Shortcut for item
$item = $this->item;
?>
<div id="icagenda" class="ic-event-view<?php echo $this->pageclass_sfx; ?>">
<?php // Top Buttons ?>
<?php echo $this->loadTemplate('top'); ?>
<?php
echo "<!-- " . $this->template . " -->";
// iCagenda Vars
require_once $this->icevent_vars;
// Theme Pack layout
require_once $this->themeEvent;
?>
</div>
<div> </div>
<?php
$this->dispatcher->trigger('onEventAfterDisplay', array('com_icagenda.event', &$item, &$this->params));
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.