Title: Ultimate member Forms
Last modified: June 28, 2023

---

# Ultimate member Forms

 *  [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/)
 * Hi,
   1. How do I show the “show password” eye in the password field for the form2.
   I had access to a shortcode to generate user ID. Is it possible to have different
   User ID for different registrations, since I have other registrations on the 
   website. Here is the short code(
 * add_action(“user_register”,”um_012022_generate_unique_account_id”);
   function 
   um_012022_generate_unique_account_id( $user_id ) {$unique_account_id = ‘GAND-‘.
   str_pad( $user_id, 5, ‘0’, STR_PAD_LEFT );update_user_meta( $user_id, “um_unique_account_id”,
   $unique_account_id );}
 * )
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fultimate-member-forms-3%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/ultimate-member-forms-3/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/ultimate-member-forms-3/page/2/?output_format=md)

 *  Plugin Support [andrewshu](https://wordpress.org/support/users/andrewshu/)
 * (@andrewshu)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16857511)
 * Hello [@klenshop](https://wordpress.org/support/users/klenshop/)
    1. This functions will be added in future.
    2. Sorry, I can’t understand your question.
 * Regards.
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16857532)
 * 2. I am generating two different forms for two different people and I want their
   USER IDs to be different since they are two different groups. How do I implement
   that using the code I got your the docs
 *  [missveronica](https://wordpress.org/support/users/missveronicatv/)
 * (@missveronicatv)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16861178)
 * [@klenshop](https://wordpress.org/support/users/klenshop/)
 * 1. You can try this code snippet for a “show password” eye
 *     ```
       add_filter( "um_confirm_user_password_form_edit_field","um_user_password_form_edit_field", 10, 2 );
       add_filter( "um_user_password_form_edit_field","um_user_password_form_edit_field", 10, 2 );
   
       	function um_user_password_form_edit_field( $output, $set_mode ){
   
       		ob_start();
       ?>
       		<div id='um-field-show-passwords' style='color: white !important; text-align:left;display:block;'>
       			<i class='um-faicon-eye-slash'></i>
       			<a style="color: white !important;" href='#'>Show or hide password</a>
       		</div>
       		<script type='text/javascript'>
       			jQuery('#um-field-show-passwords a').click(function(){ 
   
       				jQuery(this).parent("div").find("i").toggleClass(function() {
       					if ( jQuery( this ).hasClass( "um-faicon-eye-slash" ) ) {
       						jQuery( this ).parent("div").find("a").text('Hide password');
       						jQuery( this ).removeClass( "um-faicon-eye-slash" )
       						jQuery(".um-form").find(".um-field-password").find("input[type=password]").attr("type","text");
       					return "um-faicon-eye";
       					}
   
       					jQuery( this ).removeClass( "um-faicon-eye" );
       					jQuery( this ).parent("div").find("a").text('Show password');
       					jQuery(".um-form").find(".um-field-password").find("input[type=text]").attr("type","password");
   
       					return "um-faicon-eye-slash";
       				});
   
       				return false; 
   
       			});
       		</script>
       <?php 
       		return $output . ob_get_clean();
   
       	}
       ```
   
 * Install the code snippet into your active theme’s functions.php file
    or use 
   the “Code Snippets” plugin.
 * [https://wordpress.org/plugins/code-snippets/](https://wordpress.org/plugins/code-snippets/)
 * 2. You can try this new plugin “UM Unique User Account ID”
 * [https://github.com/MissVeronica/um-unique-user-account-id](https://github.com/MissVeronica/um-unique-user-account-id)
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16861187)
 * Alright. Have seen you just coded. Very grateful for that. I will take a look
   and get back to you
 *  Plugin Support [andrewshu](https://wordpress.org/support/users/andrewshu/)
 * (@andrewshu)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16870896)
 * Hi [@klenshop](https://wordpress.org/support/users/klenshop/)
 * This thread has been inactive for a while so we’re going to go ahead and mark
   it Resolved.
 * Please feel free to re-open this thread if any other questions come up and we’d
   be happy to help. 🙂
 * Regards
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16981151)
 * [@missveronicatv](https://wordpress.org/support/users/missveronicatv/) 
   I just
   realised that, if I change the membership, the user ID does change along. Thus
   from the plugin you gave. Is there anyway you can help?
 *  [missveronica](https://wordpress.org/support/users/missveronicatv/)
 * (@missveronicatv)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16981182)
 * [@klenshop](https://wordpress.org/support/users/klenshop/)
 * Can you explain how you “change the membership”?
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16981197)
 * From what we have, the user ID is based on the membership that the user registered
   with. So each membership have a specific User ID. But when the user membership
   changes, the user ID doesn’t change. eg
   first membership starts with GKsecond
   membership starts with JKI want the user member ID to change if the membership
   also changes.
 *  [missveronica](https://wordpress.org/support/users/missveronicatv/)
 * (@missveronicatv)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16981272)
 * [@klenshop](https://wordpress.org/support/users/klenshop/)
 * How do you change the Membership level by an Admin, from frontend or backend?
   
   Do you have an UM field defining the membership level?
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16981280)
 * I change it at backend. But users can also change through updrade
   Yes, there 
   is UM field for membership level
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16981429)
 * I change the membership using the user role
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16983239)
 * [@missveronicatv](https://wordpress.org/support/users/missveronicatv/) Any help
   on that please?
 *  [missveronica](https://wordpress.org/support/users/missveronicatv/)
 * (@missveronicatv)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16983301)
 * [@klenshop](https://wordpress.org/support/users/klenshop/)
 * Yes I have made a new plugin which is a duplicate of your current plugin
    but
   using Role IDs instead of Form IDs for the unique ID.
 * You must use both plugins.
 * Copy the formatting rules and replace Form IDs with UM Role IDs.
    Set the meta-
   key for unique membership ID to `um_unique_account_id`
 * [https://github.com/MissVeronica/um-unique-membership-id](https://github.com/MissVeronica/um-unique-membership-id)
 *  Thread Starter [klenshop](https://wordpress.org/support/users/klenshop/)
 * (@klenshop)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16983375)
 * [@missveronicatv](https://wordpress.org/support/users/missveronicatv/) can you
   please elaborate more. Not to clear. Read the readme file to but still not clear
 *  [missveronica](https://wordpress.org/support/users/missveronicatv/)
 * (@missveronicatv)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/#post-16983412)
 * [@klenshop](https://wordpress.org/support/users/klenshop/)
 * Can you post your formatting rules for the `GK` and `JK` unique account IDs.

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/ultimate-member-forms-3/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/ultimate-member-forms-3/page/2/?output_format=md)

The topic ‘Ultimate member Forms’ is closed to new replies.

 * ![](https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=3160947)
 * [Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin](https://wordpress.org/plugins/ultimate-member/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-member/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-member/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-member/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-member/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-member/reviews/)

## Tags

 * [shortcode](https://wordpress.org/support/topic-tag/shortcode/)
 * [users](https://wordpress.org/support/topic-tag/users/)

 * 18 replies
 * 3 participants
 * Last reply from: [klenshop](https://wordpress.org/support/users/klenshop/)
 * Last activity: [2 years, 10 months ago](https://wordpress.org/support/topic/ultimate-member-forms-3/page/2/#post-16983538)
 * Status: not resolved