Contact

Contact form

Office Hours: M-F 9am - 7pm

EST Toll-Free: 1.866.583.6886 

Local: 478.741.5515 Fax: 478.743.0944

Email:sales@spiritfund.com

Address: 647 Hillcrest Industrial Blvd, Macon, GA 31204

Create an Account to Start a Campaign

//$errors = register_new_user($_POST['user_login'], $_POST['user_email']);
$errors = wp_create_user( $_POST['user_login'], $_POST['user_password'], $_POST['user_email'] );
if (!is_wp_error($errors)) {
//Success
$return['result'] = true;
$return['redirect']=home_url().'/launch-project/';
$return['message'] = esc_html__('Registration complete.', 'funding');
} else {
//Something's wrong
$return['result'] = false;
$return['error'] = $errors -> get_error_message();
}
}
echo $this -> json_encode($return);
exit();
}
}

×