How to get user ID during registration and add it to a custom table
I am trying to get the user ID during registration and automatically add that ID to my custom table. I am using the … Read more
I am trying to get the user ID during registration and automatically add that ID to my custom table. I am using the … Read more
I’ve developed a php app and I’d like that it’s restricted to WP users (use WP like a private area). Is there a … Read more
I have a custom register form page, and I want to create a 301 redirect to force people to use this form (and … Read more
Does anybody know how WP could be configured to use only a person’s phone number as credentials? The flow would be as such; … Read more
On my site I’ve got two types of users, Subscribers and Partners. I’ve used Cimy User Extra Fields to add additional fields to … Read more
I’m doing a site in wordpress and I need some help. I have a custom registration form where users can sign up and … Read more
I’m trying to create a simple registration process which goes like this, A visitor clicks on a link (which is viewable only after … Read more
I already have a custom login from built with the following code: add_action(‘login_redirect’, ‘jwh_redirect_login’, 10, 3); function jwh_redirect_login($redirect_to, $url, $user) { $url = … Read more
Desired behavior: http://www.situationware.com should stay at www.situationware.com, no registration required. Currently wordpress is automatically redirecting to the Amazon hostname ec2-107-22-241-162.compute-1.amazonaws.com, requesting users register, … Read more
I have this form in a page template <form action=”<?php echo site_url(‘wp-login.php?action=register’, ‘login_post’) ?>” method=”post”> <div class=”formrow requiredRow”><label id=”FullName-ariaLabel” for=”txt_FullName”>Full Name</label> <input class=”required” … Read more