503 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
147
views
How to Properly Trigger Default WooCommerce Welcome Email Using Meta Key Change
I am using the BitForm plugin to create a custom registration form with WordPress authentication and email confirmation. This form creates a new WordPress user with the role of "customer" and assigns ...
0
votes
1
answer
125
views
Why is SimplyBook API addClient function not working? Error log showing "Client name value is wrong"
I am trying to add a client to the SimplyBook system using JSONRCP. This is called when a new user is added to Wordpress as a subscriber using registration form built with the UserRegistration plugin.
...
0
votes
0
answers
22
views
Manager isn't available in django [duplicate]
My Register view is like below.
class UserRegisterView( FormView ):
template_name = 'register.html'
form_class = UserCreationForm
redirect_authenticated_user = True
success_url = ...
0
votes
1
answer
251
views
Django Rest -api User registration
I've been trying to implement register method on UserView , to create new user each time I call Post request , But I got this error in postman
"detail": "Method "POST" not ...
1
vote
1
answer
212
views
Registration template not overriden in Keycloak 21
In my custom registration object i have this code:
@Override
public void buildPage(FormContext context, LoginFormsProvider form) {
logger.info("Starting custom form...");
...
0
votes
0
answers
42
views
How to troubleshoot Django registration error
I'm encountering an issue with the registration functionality in my Django project. When I attempt to register a new user, I receive a generic error message, "There was an error, please try again,...
0
votes
0
answers
27
views
Getting ValueError when using UserCreationForm
Hello to this awesome community.
Im trying to achieve a successful user registration for a CRUD.
What am I doing wrong?
But I can't stop from getting this error:
The view dashboard.views.crearUsuario ...
0
votes
0
answers
108
views
add_action hook is not working on user_register in wordpress
I have a wordpress site, and my registration url is Registration URL.
I have registered a hook to modify user_login after registration if username is more than 10 digits.
if user given mobile number ...
0
votes
1
answer
105
views
Devise Registration Ruby on Rails - Migration Error: Duplicate column name
I'm encountering an issue while running a Rails migration that adds Devise to my Users table. The error message points to a duplicate column name, specifically "email." The migration file ...
0
votes
1
answer
133
views
wordpress plugins multiple user types registration with multple subscriptions for each type of user
I have to build a wordpress site that allows register different types of users and let them subscribe to one or more services (or memberships, not sure the wordpress naming convention.
After lot of ...
0
votes
0
answers
48
views
When user registers, his credentials don't show up in DB
I created register.jsp file and a corresponding java RegisterCommand class. Inside it I tried to organise the logic, however when users types their credentials, they don't show up in my Postgres DB
...
0
votes
1
answer
103
views
Form Validation Errors Not Displayed in my HTML Template
I developed a login and registration system using Django on a single HTML page with a tabbing system. But, I encountered an error: upon registering, the page just refreshes. To troubleshoot, I ...
1
vote
2
answers
975
views
Add WooCommerce dynamic country and state dropdowns to login or register forms
I'm using WooCommerce website, with digits plugin for OTP login and sign up. I need country and state field dropdowns on digits sign up form. On the checkout page, for billing details, the dropdown is ...
0
votes
0
answers
261
views
How can I create a user login/registration model using Django Rest Framework without getting a response code 403 when trying to create user?
So I am working on a project using Django and Django rest framework. I'm trying to create an api for my website which allows users to register/log in/log out. I'm following [this tutorial] (https://...
1
vote
0
answers
47
views
Laravel: Issue with Sending Verification Email to User Upon Registration
I'm currently facing an issue where the verification email is not being sent to users after they submit the registration form in my Laravel application.
Here's what I have already checked and ...