Remove all Organizer information

Home Forums Calendar Products Events Calendar PRO Remove all Organizer information

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1051416
    ltm-cvb
    Participant

    Dear Tribe,
    I would like to remove the Organizer information fields from the community submission form, as well as from events creation page within WordPress, so that listing an event organizer is not an option for the community or our staff.

    Is there CSS code which I can use to hide or delete these elements?

    Thanks, DeAnne

    #1051565
    George
    Participant

    Hey @DeAnne,

    We unfortunately cannot help with custom coding 🙁 Please read the “Product Support” section of this page for more information → http://theeventscalendar.com/terms

    With that being said, I’d still love to help here because this fortunately a somewhat simple customization to make 🙂

    To hide the Organizer option on the front-end of your site, add the following bit of CSS to the bottom of your theme’s style.css file:


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

    To hide the organizer section completely from your admin, you’d unfortunately need to modify some PHP. Namely, you’d need to place the following code into your theme’s functions.php file:


    /**
    * Hides the Organizer fields from The Events Calendar in the admin.
    *
    * @link http://theeventscalendar.com/?p=1051416
    */
    add_action( 'admin_head', 'tribe_support_1051416' );

    function tribe_support_1051416() {
    ?>
    <style>#event_organizer.eventtable { display: none !important;}</style>
    <?php
    }

    I hope this helps! 😀

    Cheers,
    George

    #1052035
    ltm-cvb
    Participant

    George,
    You are my hero once again! The CSS code is perfect. I’ll instruct my staff to ignore the area inside wordpress.

    thank you!

    DeAnne

    #1052189
    George
    Participant

    Nice! Glad to have helped – I’ll close up the issue for now, but come back and open a new thread any time if other issues arise.

    Cheers,
    George

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove all Organizer information’ is closed to new replies.