Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-sales domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the better-click-to-tweet domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-amazon domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the pue-stats domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/staging-poc/public_html/wp-includes/functions.php on line 6114
Simplifying the Event Editing Process | Event Espresso - Staging Server

Support

Home Forums Event Espresso Premium Simplifying the Event Editing Process

Simplifying the Event Editing Process

Posted: October 31, 2013 at 5:09 pm

Viewing 1 reply thread


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 11 years, 2 months ago by imcabee.


Anonymous

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.

Viewing 1 reply thread

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 - Staging Server