Questions on Login and Registration Forms
1.) Does Fluent Community have its own dedicated Login and Register Forms?
Or, is it Fluent Forms that is used to create Login and Register Forms for Fluent Community?
2.) Does the Register Form for Fluent Community have Dropdown fields with Conditional Logic?
3.) Can I create a Custom Unique User ID for my users in Fluent Community?
Regards.
- Yes
- No
- Could you expand on what you want to achieve? Wordpress already creates a unique ID for all users, you could use a code snippet to retrieve that? Or use a code snippet to create one of your own format upon registration of a new user and store that in a custom field.
I need to have Two Registration Forms on my website:
To create my Unique User Account ID, the Logic for the two different forms had to be different β because there are two use cases to deal with.
FORM 1: The user will supply a number called "Voters Card Number".
The system should create a Unique User ID by picking a metakey called βvoters_card_numberβ, add ARP to the end of it, plus the WordPress User ID.
So that it will look like this: 241103035ARP12
241103035 is the Voters card number that my users will fill in.
ARP is the Text suffix I want to add to the Voters card number.
12 is the default WordPress User ID generated by WordPress on successful user Registration.
FORM 2: The user will fill in State Code, Local Government Code, and Ward Code in a Dropdown field.
I need the system to pick the State Code, Local Government Code, and Ward Code that were selected into the Dropdown fields, then add ARP to the end of it, plus the WordPress User ID-- to generate a Unique User ID.
The difference between the 2 Forms, is thatβ for the first form, a number will be supplied by the user, then we add ARP and the WordPress User ID to it.
For the second form, we pick the input filled into the State Code, Local Government Code, and Ward Code dropdown fields, then add ARP to the end of it, plus the default WordPress User ID generated by WordPress on successful form submission.
This means that, on one website, I want to execute 2 seperate Unique ID generation Logic.
Can I achieve this with Fluent Community?