• Resolved dyoungprod

    (@dyoungprod)


    Even though I’m using title=”none”, the Month and Date are still showing: https://www.smyrnafumc.org/today/

    [ics_calendar url="https://app.espace.cool/public/iCalEventsv2?orgId=14315&exportOption=Public&categoryId=&locationId=&areas=&publiclocationId=&userId=218639&hideUrl=true&hideCalendarLabels=true&doNotIncludeCanceledEvents=true&t=1.ics" tzoffset="America/New_York" location="true" view="list" startdate="today" limitdays="1" location="true" title="none" description="none"]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author room34

    (@room34)

    The title attribute is not for the date/month; it’s for a separate text header that gets displayed above the entire calendar.

    What exactly are you trying to have not display on the page?

    Plugin Author room34

    (@room34)

    Just a follow-up/clarification: the title="none" attribute only removes the feed’s default title from the header. It doesn’t remove the month and date because a) those aren’t part of the title and b) since this is a calendar plugin, the assumption is that the date is important information that needs to display.

    That said, if you’ve got a very limited range of dates being displayed, showing the Month/Year header, especially in list view which has the Month/Day above each day, may appear redundant. You can hide the Month/Year header with CSS:

    .ics-calendar-label { display: none; }

    If you actually need to hide the Month/Day as well, there’s not a CSS class directly on that, but this should work (list view only):

    .ics-calendar-list-wrapper h4 { display: none; }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘title=”none” not working’ is closed to new replies.