Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created April 29, 2015 21:25
Show Gist options
  • Save SeanChDavis/995583c0c428d8265a54 to your computer and use it in GitHub Desktop.
Save SeanChDavis/995583c0c428d8265a54 to your computer and use it in GitHub Desktop.
EDD FES Redirect Auto-approved Vendor Registration
<?php // DO NOT COPY THIS LINE
function sd_fes_registration_redirect( $response, $post_id, $form_id ) {
$response['redirect_to'] = 'http://google.com/';
return $response;
}
add_filter( 'fes_register_form_frontend_vendor', 'sd_fes_registration_redirect', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment