Closed (fixed)
Project:
Event
Version:
6.x-2.x-dev
Component:
Documentation
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
2 Dec 2008 at 21:24 UTC
Updated:
14 Jul 2012 at 23:32 UTC
Where's the option(s) do disable iCal on the block and all other Event pages?
Comments
Comment #1
killes@www.drop.org commentedThere's no such option.
Comment #2
OneTwoTait commentedIt would be nice to not have to remove the iCal buttons manually. :)
In my case, I would be really surprised if over 5% of my viewers used iCal.
Comment #3
frank ralf commentedJust hide the
<div class="ical-link">with some CSS:That will do the trick.
Comment #4
Bananoide commentedfor me deleting -> 'event_ical_link' => array('arguments' => array('path' => NULL)), <- at the event.module did the trick. Don't know if this actually screws everything up further in time though.
Comment #6
nonprofit commentedHiding the link in the css is generally a bad idea as those elements are still rendered. Thus you suffer the performance hit and reap none of the benefits. A better approach is to disable the Calendar iCal module (yoursite.org/admin/build/modules).
Blessings!
-NP
Comment #7
frank ralf commentedAFAIK the link will be shown by the Event module even without the Calender iCal module present.
But you are right, instead of hiding the element with CSS you should override the output on the theme level.
Cheers,
Frank
Comment #8
dbeall commentedYeah, I don't want the ical thing either, most people don't know what it is for anyway.
Using the 6.x-2.x-dev event module, downloaded 11/27/2009.
I just removed this at line 82 from the event.module
'event_ical_link' => array('arguments' => array('path' => NULL)),Then clear the cache.
I know this issue is closed, but a google search led me here.