Support

Home Forums Event Espresso Premium Simplifying the Event Editing Process

Simplifying the Event Editing Process

Posted: October 31, 2013 at 5:09 pm


imcabee

October 31, 2013 at 5:09 pm

Hello,

Similar to the WordPress “Screen Options” tab, is it possible to remove some of the panels in the event editing window? I would like to remove content panels such as “Event Pricing” and “Email Confirmation.” I am trying to simplify the editing screen for my client so they can just focus on the necessary sections.

Please let me know if this can be accomplished.

Thanks,
Ian

  • This topic was modified 10 years, 6 months ago by  imcabee.


Tony

  • Support Staff

November 1, 2013 at 3:24 am

Hi imcabee,

Currently there is no way to do this through Event Espresso although you could add some CSS to the wp-admin to hide sections you did not want/need.

A quick search came up with:

http://wordpress.org/support/topic/how-do-i-add-css-to-admin-backend-to-displaynone-specific-menu-items

Use Chrome Dev tools to find the ID’s of the sections you wish to hide and add them to the function mentioned from above.

So for example

function ee_hide_sections() {
   echo '<style type="text/css">
           #confirmation-email{display:none}
         </style>';
}

add_action('admin_head', 'ee_hide_sections');

To make sure you are specific within Event Espresso just add #espresso_event_editor before your selector:

#espresso_event_editor #confirmation-email{display:none}

Remember most of the information requested within Event Espresso is needed in order for the events to function correctly. Be aware of what you are hiding as it may cause you more issues further down the line.

The support post ‘Simplifying the Event Editing Process’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso