• Hi and congrats for this great plugin πŸ™‚
    I try to add a hidden field but it doesn’t save the value I assign to it via URL.
    When I view the registration page source code, even if the hidden field appears and its value is correct, it doesn’t store data in the usermeta table.
    I also try the same mechanism with a text field and it works properly, so the problem is limited to hidden fields.
    Could you fix this bug, please?
    Thank you very much πŸ™‚

Viewing 1 replies (of 1 total)
  • I changed the code to work around this problem. In register-plus-redux.php at line 2156, I replaced the condition with just a test for true:

    // BUG: hidden fields don't get saved to the database, so replace the following condition
    // if ( current_user_can("edit_users") || !empty($v["show_on_profile"]) ) {
    if ( true ) {

    It now correctly adds hidden fields to the database.

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Register Plus Redux] Hidden Fields Don't Work’ is closed to new replies.