Okay
  Public Ticket #2730931
How to completely hide attendees in the agenda view
Closed

Comments

  •  4
    Dan started the conversation

    Hi there,

    is it possible to completely hide attendees in the agenda view for events with RSVP in front-end? Names can be set to "private", that's clear. But how to hide the participants completely?

    See attached file for better understanding.

    Regards!

  •  771
    Zhivko replied

    Hi,

    You could hide them via css.

    Go to Dashboard -> STEC -> Fonts & Colors -> Custom style tab and add following style:

    .stec-layout-single-attendance-attendees,
    .stec-layout-event-inner-attendance-attendees { display: none !important; }



    Stachethemes Developer

  •  4
    Dan replied

    Hi,

    thank you for your answer. This helps! The result is not very pretty but fits for its purpose. The anttendees are hidden now. But the tab "attendees" is still visible. See the screenshot in attached file. Is there a way to hide the tab "attendees"?

    Best regards!

  •  771
    Zhivko replied

    Hi,

    Sorry for the late reply. 

    You could hide the tab via css. In STEC -> Fonts & Colors -> Custom style tab add following css:

    [data-tab="stec-layout-event-inner-attendance"] {
        display:none !important;
    }

    Stachethemes Developer