I need help remember how I accomplished something a few months ago. I'm using the calendar and date modules on my church's website to display a calendar of events related to the church. Most of these are weekly events such as bible studies and weekly services. I used the repeat module to make these events repeating. Because of this though when I clicked on an event in the calendar, the little popup bubble would appear to show the details of the event, however it would list every single time the event was scheduled before displaying any details. This obviously won't work for our repeating events as the list is quite long. When I originally set the site up a few months ago I figured out a way to hide these. I remember using the firebug extension for firefox and figuring out a way to add some css code to either the date.css or calendar.css files to hide where it shows the date and time in the popup bubble.
Today I upgraded to the newest version of both the date and calendar module, and forgot to backup my files before doing so. Now I'm back to the original problem and unfortunately I can't remember how I fixed it in the first place. I'm still very new to all of this (my first time dealing with either drupal or css was in august), so I'm not really surprised I forgot. Can anyone give me any suggestions as to how I may have accomplished this?
Comments
I still haven't figured it
I still haven't figured it out, but I may be moving in the right direction. From using firebug again I think I found what it is I need to hide. If I inspect the popup I find a div class titled "field field-type-date field-field-time" If I right click in firebug and delete that element, everything I'm trying to get rid of goes away. What I don't know is what to add to what file to make it go away permanently. I think last time I added "display: none" somewhere, but I can't remember where or how I added it. Sorry if I'm making no sense. When I did this the first time it was right when I first started learning any of this, and I haven't messed with it since so it's like I'm having to relearn it all again.
Try adding this to your
Try adding this to your theme's style.css:
That should do it.