Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save plugin-republic/e8fc113b610e28681140a4c10d867b09 to your computer and use it in GitHub Desktop.
Save plugin-republic/e8fc113b610e28681140a4c10d867b09 to your computer and use it in GitHub Desktop.
<?php
/**
* Redirect users after registration
*/
function demo_registration_redirect( $redirect_url ) {
$redirect_url = '/shop'; // Redirect to shop
return $redirect_url;
}
add_filter( 'woocommerce_registration_redirect', 'demo_registration_redirect' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment