I am trying to redirect user after Woocommerce registration. I have tried everything and it is not working.
I have tried some methods found on internet but they did
Add this filter in theme function file.
function filter_woocommerce_registration_redirect( $var ) {
// make filter magic happen here...
return get_page_link(3598); // 3598 id page id.
};
Add the filter:
add_filter( 'woocommerce_registration_redirect',
'filter_woocommerce_registration_redirect', 10, 1 );