Forum Replies Created
-
AuthorPosts
-
Khaled
MemberHello, Please try version 1.1.5rc1
Khaled
MemberHello, You can try wp default action “user_register” which accept one parameter ($user_id) and triggered every time when a new user has registered.
Khaled
MemberHello,
Can you please check js error on your browser console for any js error. If it is possible, you can send temporary admin account to support(at)user-meta.com so that we can check and solve the issue.
Thanks.
Khaled
MemberHi,
Can you please send ftp and wp login data to support(at)user-meta.com
Thanks.
Khaled
MemberHello,
That file contains code to validate pro license. You can just ignore this message or have a look file content by applying base64_decode() function.Thanks.
Khaled
MemberI have just tested it. It is working here.
add_action( 'init', 'loadAfterUserRegistrationHook' ); function loadAfterUserRegistrationHook(){ add_action( 'user_meta_after_user_register', 'createNewPost' ); } function createNewPost( $response ){ echo $response->user_login; }
Khaled
MemberHello,
Thanks for using the plugin.
Just drag out the captcha field from your form. (from User Meta >> Forms Editor menu)
–
KhaledKhaled
MemberHi,
You can use following to load user_meta_after_user_register into init hook.
add_action( 'init', 'loadAfterUserRegistrationHook' ); function loadAfterUserRegistrationHook(){ add_action( 'user_meta_after_user_register', 'createNewPost' ); }
Thanks.
Khaled
MemberHello,
So fare UMP offer shortcode/widget to show self frontend profile with extra field. Only admin can access other user’s frontend profile.
UMP store extra data to usermeta table. So it is possible to retrieve those data by using WP function/method.
http://codex.wordpress.org/Function_Reference/get_user_meta
You can use get_user_meta function in your author.php file to show extra data.Khaled
MemberHello,
Customized registration email are working only with UMP shortcode or widget.
For HTML/Plain Text we use WP filter, That filter may be overwritten by other plugin installed in your system. Please try with temporarily disabled others plugin.
Thanks.
October 25, 2012 at 1:02 pm in reply to: Accessing User Meta Custom Fields to Pre-Populate Forms #2376Khaled
MemberHello bizanswers,
Unfortunately so far we did not offer filter/action hook for field pre-population. We are hopeful to announce many hook with next release(1.1.3rc2).
In your example,
gform_field_value_firm_name hook might not be available so this hook are triggered.With GravityForm, if you find any hook that run before showing field data, you can retrieve meta data saved by UMP by calling get_user_meta function anywhere.
http://codex.wordpress.org/Function_Reference/get_user_metaPlease checkout for next release, it will be arrive soon.
Thanks.
October 25, 2012 at 12:48 pm in reply to: ERROR: The answer to the security question is invalid. #2375Khaled
MemberHello, “ERROR: The answer to the security question is invalid.” this error not comes from UMP. Most probably, you have other captcha/security question type plugin enable in your system which prevent this access.
Thanks.
Khaled
MemberWP need at-least username, email and password for user registration. So for any case, if email is missing while registration we generate {username}@noreply.com as email. If there is email field available then, that email will be use instead.
Thanks.
Khaled
MemberHello,
For checkbox, please recheck those:meta_key, Field Options, and drop that checkbox in your registration form.
For Import: if user already imported they can be updated, but username can’t change once added.
Which error message are shown while it failed? -
AuthorPosts