Support

Home Forums Event Espresso Premium REG Details Page has unwanted info

REG Details Page has unwanted info

Posted: August 24, 2019 at 2:28 am


Lindsay Steyn

August 24, 2019 at 2:28 am

Hi
I am setting up an administrator clone with reduced functionality.

When this cloned profile navigates to “view registration” and then to a registration in the list the REG Details tab is displayed.

In the right hand column of the REG Details page the “Contact Details” are displayed and below this the “New @ Event Espresso” block is displayed.

How can I hide the “New @ Event Espresso” from this page please?

Many thanks
Lindsay


Lorenzo Orlando Caum

  • Support Staff

August 26, 2019 at 11:24 am

Hi Lindsay,

Look for the Screen Options tab at the top right of your screen and click on it.

Then remove the checkmark from New @ Event Espresso and save changes.

That will remove that widget.


Lorenzo


Seth Shoultes

  • Support Staff

August 26, 2019 at 11:24 am

Hi Lindsay,

Here’s some code that you can add to your child theme or into a site-specific plugin to hide the “New @ Event Espresso” within all pages of your admin:

// remove New @ Event Espresso admin widget
function jf_ee_remove_news_metabox(){
    $current_screen = get_current_screen();
    remove_meta_box( 'espresso_news_post_box', $current_screen->base, 'side' );
}
add_action( 'admin_head', 'jf_ee_remove_news_metabox' );

Here’s some information about creating a site-specific plugin:
https://eventespresso.com/wiki/create-site-specific-plugin-wordpress-site/


Lindsay Steyn

August 27, 2019 at 4:50 am

Thank you Seth and Lorenzo

The support post ‘REG Details Page has unwanted info’ 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