• Resolved savroo

    (@savroo)


    Having an issue with the posterboard display for all day events.

    A time of “12:00am” is displaying rather than “all-day” on the posterboard display. It displays correctly as “all-day” on the single event page.

    Is there a way to get it to either display “all-day” rather than the time or to remove the time from the posterboard if it’s an all day event.

    https://wordpress.org/plugins/all-in-one-event-calendar/

Viewing 5 replies - 1 through 5 (of 5 total)
  • You can hide the all day via CSS:

    .ai1ec-allday-badge {
    display: none;
    }

    Hope this helps!
    ~Donna

    I would also like to remove the “all-day” badge from Posterboard and from the Pop-ups but cannot get the suggested CSS change to work.
    I did manage to remove it from other views via CSS:

    These worked ok:

    .single-ai1ec_event .ai1ec-allday-badge
    {
    	display: none;
    }
    .ai1ec-event .ai1ec-allday-badge
    {
        display: none;
    }

    but these do not:

    .ai1ec-posterboard-view .ai1ec-allday-badge
    {
    	display: none;
    }
    .ai1ec-popup ai1ec-allday-badge
    {
        display: none;
    }

    All suggestions welcome!
    Site: revivalraces.com

    Hi,

    Please try the following code:

    #ai1ec-calendar .ai1ec-posterboard-view .ai1ec-posterboard-time {display:none;}
    .ai1ec-popup .ai1ec-allday-badge {display: none;}

    Perfect!
    Many thanks indeed Benjamin.

    No problem, glad I could help 😉

    Take care,
    Ben

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Posterboard Time Display’ is closed to new replies.