Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hi,
By default, name attribute comes from meta_key or based on field type. Although, you can override name attribute by filter hook http://user-meta.com/filter-hooks/user_meta_field_config/ but it is not recommended. Use meta_key instead.Thanks.
KhaledMemberHi, to use reCaptcha in login, use custom login form http://user-meta.com/howto/build-custom-login-form/ and add captcha field to your login form.
For Polish language, change your site language as Polish or you can use WPML too.
Thanks.
KhaledMemberHi,
Please try to increase max_input_vars in your .htaccess file.
php_value max_input_vars 3000 php_value suhosin.post.max_vars 3000
KhaledMemberHi Mike,
Is it possible to set a temp admin account for support(at)user-meta.com to check and resolve the issue on your site.
Thanks.
KhaledMemberHi,
Safari tend to extract zip file automatically. To keep zip file remains same you can change Safari settings.
Have a look on it:
http://247pearsoned.custhelp.com/app/answers/detail/a_id/8650/~/safari%3A-zip-files-automatically-unzip%2FextractThanks.
KhaledMemberHi,
Unfortunately, UMP registration is not well optimised for multiple roles. You can put it to our features request section so that we can review this when adding new features.Thanks.
KhaledMemberHi Julie,
You can put 1900:c into year range field, inside the date/time field configuration.
Thanks.
KhaledMemberHi Robert,
If you just use
$url = get_permalink($post_id);
and add $url to your email, user shall get your new url.
However. when user visit this url we need to process our email verification code. To implement this, please have a look on user-meta/controllers/pro/umExecutionPageController.php
executionPage method at line 39, which has been called by line 11.
You can do another approach, as your users get their password by email, so you don’t need to verify their email anymore. You can just activate them on your code.
To do it you can add a tracker to the user inside your createpost4 function.
update_user_meta( $user_id, 'reg_method', 'by_post' );
Then use user_register action hook to activate users instantly.
add_action( 'user_register', 'activateUser', 50 ); function activateUser( $userID ) { $reg_method = get_user_meta( $userID, 'reg_method', true ); if ( $reg_method == 'by_post' ) { update_user_meta( $userID, 'user_meta_user_status', 'active' ); } }
Hope, it will helps.
Thanks.
KhaledMemberHi,
Another file: jquery.placeholder.js file is missing now. Normally UMP suppose to add necessary js and css file if you don’t block them.KhaledMemberIt shall be easier for us to check the issue if you can set a temp admin account for us to support(at)user-meta.com. Or at-least post the corresponding url to check.
Thanks.
KhaledMemberThe issue was solved for cirjconcepts by email support.
KhaledMemberHi,
You can get email verification url by following code and add it to the email.
global $userMeta; $verificationUrl = $userMeta->emailVerificationUrl( $user );
Thanks.
KhaledMemberYou can find the text on user-meta/controllers/pro/umEmailNotificationController.php
line 168 and 173
Thanks.
KhaledMemberHi,
we are looking into the issue and will update the topic.
Thanks.
-
AuthorPosts