Skip to content

Instantly share code, notes, and snippets.

@GeoffEW
Created September 7, 2017 03:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GeoffEW/0b3b28113baadc8a6fd982bb88152a23 to your computer and use it in GitHub Desktop.
Save GeoffEW/0b3b28113baadc8a6fd982bb88152a23 to your computer and use it in GitHub Desktop.
The Events Calendar Community Events redirect to custom login form
<?php
/*
* The Events Calendar Community Events redirect to custom login form
*/
add_action ( 'tribe_ce_event_submission_login_form', 'tribe_ce_redirect_login' );
function tribe_ce_redirect_login ( ) {
wp_safe_redirect( site_url('/login/') );
exit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment