Skip to content

Instantly share code, notes, and snippets.

@joshfeck
Created October 6, 2015 14:01
Show Gist options
  • Save joshfeck/b8293f62329e34d4cde0 to your computer and use it in GitHub Desktop.
Save joshfeck/b8293f62329e34d4cde0 to your computer and use it in GitHub Desktop.
<?php
add_filter("ws_plugin__s2member_login_redirect", "my_custom_login_redirect", 10, 2);
function my_custom_login_redirect($redirect, $vars = array())
{
// If you do NOT want s2Member to perform the redirect, return false.
return false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment