Hi Tara! I’d be happy to help!
First off, I do want to note that we are fairly limited in how much we can support custom development questions like this.
That said, we do like helping out and at least point users into the right direction.
Try pasting this snippet to your theme’s functions.php file:
function hide_event_cost_table($hook) {
if ( 'post-new.php' != $hook ) {
return;
}
?>
<style type="text/css">
table#event_cost {
display: none;
}
</style>
<?phpa
}
add_action( 'admin_enqueue_scripts', 'hide_event_cost_table' );
This will hide the whole Event Cost section from the add / edit event. Does it work for you as well? Please let me know.
Cheers!
Victor