How to Redirect Registration to Your Custom Page
Open functions.php in ../goodstore/ and add this code function RedirectWPRegister(){ $request = basename($_SERVER[‘REQUEST_URI’]); if ($request == ‘wp-login.php?action=register’): wp_redirect(site_url(‘/my-account’)); // pa ...