Advertisement
brook-tribe

Tribe Prevent Activation Page

Oct 8th, 2014
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. // LATEST VERSION CAN BE FOUND HERE: https://gist.github.com/elimn/d60cb5f4b7334059c636
  2.  
  3. // Prevents activation page from showing up
  4. add_action( 'admin_init', 'tribe_remove_activation_page', 1 );
  5.  
  6. function tribe_remove_activation_page() {
  7.     remove_action( 'admin_init', array( Tribe__Events__Activation_Page::instance(), 'maybe_redirect' ), 10, 0 );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement