How do I remove details

Home Forums Calendar Products Events Calendar PRO How do I remove details

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1295020
    Mark
    Participant

    When displaying a single events, is it possible to remove the DETAILS fields for RECURRING, EVENT CATEGORIES, and EVENT TAGS and if so how do I do that?

    #1295322
    Nico
    Member

    Hi there Mark,

    Thanks for getting in touch with us on this! I can help you here 🙂

    First let me say that the right way of doing this is to create a child theme, and override the template that outputs the meta data. As the elements in that ‘meta data’ table don’t have specific identifiers in the html code, you use a CSS snippet like the following to hide the rows by ‘order’:


    .tribe-events-meta-group tr:nth-child(3),
    .tribe-events-meta-group tr:nth-child(5),
    .tribe-events-meta-group tr:nth-child(6) {
    display: none;
    }

    The code above will hide the 3rd, 5th and 6th rows of the ‘meta data’ table. The downside of this is that if there are any events with different information in the table it might hide the wrong rows!

    Please let me know if this helps,
    Best,
    Nico

    #1314584
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How do I remove details’ is closed to new replies.