Created
January 11, 2017 16:05
-
-
Save bentasm1/66ca2b38f620f74f85ae56a827dfea8b to your computer and use it in GitHub Desktop.
Karen's Site Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* WC LOGIN REDIRECT */ | |
add_filter('woocommerce_login_redirect', 'wcs_login_redirect'); | |
function wcs_login_redirect( $redirect ) { | |
$redirect = 'https://www.xxxxxxxxxxx.com/dashboard/'; | |
return $redirect; | |
} | |
/* WC REGISTER REDIRECT */ | |
add_filter('woocommerce_registration_redirect', 'wcs_register_redirect'); | |
function wcs_register_redirect( $redirect ) { | |
$redirect = 'https://www.xxxxxxxxxxxx.com/my-account/'; | |
return $redirect; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment