• Resolved danielrc15

    (@danielrc15)


    Hi, In the widget ‘agenda’ view I would like to remove the video buttons – “<< < > >> Today” and also remove the “Month Week Day Agenda” options but leave the month and year and then use the agenda list in the widget. Can I do this via CSS and without upsetting the calendat view on another page? Thanks Daniel

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support EventPrime Support

    (@eventprimesupport)

    Hello @danielrc15,

    Thank you for using EventPrime!

    Yes, this can be achieved using the Custom CSS option available under the “Custom CSS” tab in the “Events -> Settings” sub-menu.

    Let’s say you have included the following shortcode on a particular page – [em_events view=”listweek”]
    This will generate a calendar with the landing view set to “Agenda”.

    Now, to remove the requested elements from the Calendar view, please utilize the below-mentioned CSS snippet:-
    .page-id-{x} #ep_event_calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) { display: none; }
    .page-id-{x} #ep_event_calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) { margin: auto; }
    .page-id-{x} #ep_event_calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) { display: none; }

    NOTE – Please replace .page-id-{x} CSS class with the respective page’s CSS class(for example, .page-id-84), which can be identified by inspecting(press F12) the <body> tag for that page.

    If you need further clarification or require additional information, please let us know.

    Thread Starter danielrc15

    (@danielrc15)

    Thanks for this. I decided to also remove the ‘Month and Year’ heading (child(2)?) in the footer:

    footer #ep_event_calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) { display: none; }
    footer #ep_event_calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) { display: none; }
    footer #ep_event_calendar .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) { display: none; }

    The only problem now is that the text has disappeared, but the outer box still remains, do you know how to remove that as well with CSS?

    Also, can the outer ‘Types’ that are displayed also be removed with CSS?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Video Buttons and Month/Week/Day in Widget’ is closed to new replies.