Hello,
This is not the main purpose of iCagenda, but i've planned this option in the future (no deadline today, as not planned in the current developpement).
But, if you don't need the website field, it could be used to do this, but needs to edit core file of module iC calendar and theme pack used.
To do this hack :
in modules/mod_iccalendar/helper.php, add this line
'article' => $r->website, arround lines 952-973 :
$event=array(
'id' => (int)$r->id,
'registered' => (int)$registered,
'maxTickets' => (int)$maxTickets,
'TicketsLeft' => (int)$TicketsLeft,
'Itemid' => (int)$mItemid,
'url'=> $urlevent,
'article'=> $r->website,
'title' => $r->title,
And in the theme pack (components/com_icagenda/themes/packs/NAME_OF_YOUR_THEME_PACK/NAME_OF_YOUR_THEME_PACK_day.php :
Replace this :
By this :
And so, you can copy/paste the url of the article in the field website, admin side.
Lyr!C