want to hide organizer email addresses

Home Forums Calendar Products Community Events want to hide organizer email addresses

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1529068
    cp_csw
    Participant

    hi

    i allow anonymous event submissions, however, per the copy in the submission form (“The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers….”) I expected that organizer email addresses would not be displayed.

    however, they are.

    can you please advise how to fix so that the email addresses do NOT appear when people are looking at event info or organizer info?

    per instructs in another thread, i have already tried adding the below to additional css and directly to the style.css without success.

    #event_organizer.tribe-events-community-details {
    display: none !important;
    }

    thanks for helping.
    -c

    #1529556
    Jeremy
    Keymaster

    Hi,

    Thanks for reaching out to us! I’d be happy to help you 🙂

    Could you try to add the following snippet in your theme’s customizer ? (head to Appearance > Customize > Additional CSS)

    .tribe-events-meta-group-organizer dt,
    .tribe-events-meta-group-organizer .tribe-organizer-email {
      display: none;
    }
    

    I hope this helps,

    Cheers,
    Jeremy

    #1529813
    cp_csw
    Participant

    Thanks Jeremy.
    It partially worked.

    the email still shows up here:
    http://nationalcraftspiritsweek.com/organizer/csw-admin/

    but it does not here.
    http://nationalcraftspiritsweek.com/event/test-event/

    can you advise on how to hide it from the organizer page? thank you.

    #1530367
    Jeremy
    Keymaster

    Hi Chrystal,

    Right, I forgot about the Organizer page. You could then add the following snippet (still in Additional CSS):

    .tribe-events-organizer-meta .email {
      display: none;
    }
    

    I hope that will solve your problem.

    Cheers,
    Jeremy

    Another user reported this working for them on hiding the organiser’s email address and label in the event single page:

    div.tribe-events-single-section.tribe-events-event-meta.primary.tribe-clearfix div.tribe-events-meta-group.tribe-events-meta-group-organizer dl dt.tribe-organizer-email-label {
      display: none;
    }
    div.tribe-events-single-section.tribe-events-event-meta.primary.tribe-clearfix div.tribe-events-meta-group.tribe-events-meta-group-organizer dl dd.tribe-organizer-email {
      display: none;
    }
    
    Hiding the email address and divider in the organiser's page:
    #tribe-events div.tribe-events-organizer div.tribe-events-organizer-meta.tribe-clearfix address span.email {
      display: none;
    }
    
    #tribe-events div.tribe-events-organizer div.tribe-events-organizer-meta.tribe-clearfix address span:nth-child(4) {
      display: none;
    }
    
    #1547524
    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 5 posts - 1 through 5 (of 5 total)
  • The topic ‘want to hide organizer email addresses’ is closed to new replies.