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