Hi Cole,
I just have a simple site wanting to do a login redirect. I tried the snippet you gave earlier on
function my_awesome_redirect( $redirect ) {
$redirect = 'https://www.google.com';
return $redirect;
}
add_filter( 'wpml_redirect_to', 'my_awesome_redirect' );
and got it to work for all pages except for the home page (which is a Page, not a blog), any ideas why?