Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created November 7, 2016 23:22
Show Gist options
  • Save GeoffEW/22e0b1b2c90a19f35532349610f48601 to your computer and use it in GitHub Desktop.
Save GeoffEW/22e0b1b2c90a19f35532349610f48601 to your computer and use it in GitHub Desktop.
Disable Ninja Forms on the The Events Calendar Attendees page. Fixes bug where Ninja Forms overrides the attendee list.
<? php
/**
* Disable Ninja Forms on the The Events Calendar Attendees page.
*
* Fixes bug where Ninja Forms overrides the attendee list.
*/
if( is_admin() && ! empty( $_GET['page'] ) && 'tickets-attendees' === $_GET['page'] ) {
remove_action( 'admin_init', array( Ninja_Forms::instance()->menus[ 'forms' ], 'admin_init' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment