PriMoThemes — now s2Member® (official notice)
This is now a very OLD forum system. It's in READ-ONLY mode.
All community interaction now occurs at WP Sharks™. See: new forums @ WP Sharks™
function checkout_login() {
if (!is_user_logged_in() && isset($_REQUEST['user_email'])) {
//get the user's email from the checkout page
$user_email = $_REQUEST['user_email'];
//automatically log them in, and redirect them
global $wpdb;
$get_user_login = $wpdb->get_row('SELECT u.user_login FROM wp_users u WHERE u.user_email = "'.$user_email.'"');
$user_login = $get_user_login->user_login;
$user = get_userdatabylogin($user_login);
$user_id = $user->ID;
wp_set_auth_cookie($user_id);
wp_redirect('http://www.example.com/thank-you/');
exit;
}
}
add_action('init', 'checkout_login');
Users browsing this forum: Google [Bot] and 8 guests