Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @remykonings28

    You can use the following code snippet to add placeholders to the account fields:

    add_filter("um_predefined_fields_hook","um_018422_account_placeholders");
    function um_018422_account_placeholders( $fields ){
    
         $fields['first_name']['placeholder'] = 'First Name';
    
        return $fields;
    }

    You can add the code to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    Thank you. That worked perfectly!

    Regards,

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Thanks for letting us know.

    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Account fields Placeholder’ is closed to new replies.