Forum Replies Created
-
AuthorPosts
-
SupportMember
Hello, With version 1.1.5rc1, you can customize your message. Go to User Meta >> Settings (Text Tab)
Thanks.SupportMemberHello, please try 1.1.5rc1, and make sure you have put correct private and public key in User Meta >> Settings, otherwise UMP will overlook captcha.
Thanks.SupportMemberHello, Please try with disabling other plugin which is using recaptcha too.
Thanks.SupportMemberHello, Please wait for next UMP version(within next week). Next release will add multiple admin email.
Thanks.SupportMemberHello, Thanks for using pro version. You can use any membership plugin to set custom redirection based on access level. If your requirement is just redirect all user to login page until logged in, just put following code to your functions.php file
add_action('wp', 'setRedirection'); function setRedirection(){ $loginUrl = wp_login_url(); if( ! is_user_logged_in() ) { $loginUrl = str_replace( array('http://','https://'), array('',''), trim( wp_login_url(), '/' ) ); $requestUrl = trim( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], '/' ); if( $loginUrl <> $requestUrl ) wp_redirect( wp_login_url() ); } }
Those code will redirect user if they are not logged in but try to access another page then login.
And you can set login redirection from User Meta >> Settings (Redirection Tab)
Thanks.
SupportMemberHello,
You will need to edit UMP source file for that.
Open user-meta/framework/helper/uploader.phpAnd make your necessary change to line 148, 149, 150, 191.
Thanks.
October 24, 2013 at 2:53 am in reply to: Cannot Activate Plugin: license already used in localhost #4415SupportMemberHello,
You can set WP and UMP in same domain (localhost/starzit/site) and withdraw. BTW, I think you were able to validate license in your live site.Thanks.
October 20, 2013 at 3:53 pm in reply to: Cannot Activate Plugin: license already used in localhost #4411SupportMemberHello, Sorry for late response. Generally your single license is valid for one site. You can withdraw your license from localhost/starzit/site and then validate in your live site. If you need to work localhost and live site together, then you need to either purchase another license or upgrade to unlimited license. If you like to upgrade, you can do it by visiting http://user-meta.com/profile/
Thanks.SupportMemberHello,
Please check are there any chrome extension handling with cookies issues. And also check http://yoursite.com/wp-login.php is also working for you or not.If you found wp-login.php is redirected to front-end login page, Select “none” for “Login Page” from User Meta >> Settings (Login Tab)
Thanks.
SupportMemberHello, we have updated changelog.
Thanks.SupportMemberHello,
You can use non-ajax solution. Go to User Meta >> Settings (Login Tab)
And check the checkbox saying “Disable AJAX submit” and hit save button.
Thanks.SupportMemberFor assigning css class to input itself, please have a look
Example SectionAnd for placeholder, you can add placeholder (e.g %first_name%) to “Default Value”, please note, this placeholder value will only consider until user didn’t input anything.
Thanks.
SupportMemberHello,
For using category as dropdown options, put following code in your functions.phpadd_filter( 'user_meta_field_config', 'user_meta_field_config_function', 10, 3 ); function user_meta_field_config_function( $field, $fieldID, $formName ){ global $userMeta; if( $fieldID != 'Target_Field_ID' ) return $field; $output = null; $cats = get_categories(); foreach( $cats as $cat ): $output .= $cat->term_id.'='.$cat->name.','; endforeach; $output = ',' . trim( $output, ',' ); $field['options'] = $output; return $field; }
Don’t forget to change Target_Field_ID .
SupportMemberHello, You can use “HTML” field(from Fields Editor) in your registration form to add your html code there to wrappe content. And also you can assign custom class to any field to change look and feel.
Thanks. -
AuthorPosts