Skip to content

Instantly share code, notes, and snippets.

@elimn
Created February 10, 2016 20:57
Show Gist options
  • Select an option

  • Save elimn/4c321fa3d568446e08a1 to your computer and use it in GitHub Desktop.

Select an option

Save elimn/4c321fa3d568446e08a1 to your computer and use it in GitHub Desktop.
MT | TEC | Community Events redirect to custom login form
<?php
/*
* The Events Calendar Community Events redirect to custom login form
*/
function tribe_ce_redirect_login () {
wp_safe_redirect( site_url( '/login/' ) );
exit;
}
add_action ( 'tribe_ce_event_submission_login_form', 'tribe_ce_redirect_login' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment