Statistics: Posted by Jason Caldwell — August 30th, 2010, 9:11 am
<?php
function wp_new_user_notification(){} /* Disables New User Email with password. */
?>
<?php
if($user = get_user_by_email($_GET["email"]))
{
$user = new WP_User($user->ID);
$user->set_role("s2member_level1");
echo 'Thank you. Access granted. You're now at Level #1.';
}
?>
Statistics: Posted by Jason Caldwell — August 30th, 2010, 9:00 am
Statistics: Posted by tormenta — August 27th, 2010, 5:09 pm