Replies: 0
there’s a bug that does not allow to use https protocol, here’s the fix
before
195.wp_redirect(‘http://’ . $_SERVER[‘HTTP_HOST’] . $targetPage . $GETQuery);
after
195.$protocol = ((!empty($_SERVER[‘HTTPS’]) && $_SERVER[‘HTTPS’] != ‘off’) || $_SERVER[‘SERVER_PORT’] == 443) ? “https://” : “http://”;
196.wp_redirect($protocol . $_SERVER[‘HTTP_HOST’] . $targetPage . $GETQuery);