Forum Replies Created
-
AuthorPosts
-
Khaled
MemberHi,
You can insert yes=Subscribe inside field options. and can remove field title. Or you can simply put yes into field option.Thanks.
Khaled
MemberHi,
Make sure you have use correct shortcode.Showing username as read-only and value as admin means, the form is treated as profile form.
Thanks.
Khaled
MemberHi,
Please send an email to support(at)user-meta.com with your site url and this topic link.
Thanks.
Khaled
MemberHi Martin,
Don’t hesitate to ask question 😉
In these days, we are giving more time to development of the plugin. And there are lots of new things are coming with upcoming version. Manually adding range field could be little tricky with UMP. We are hopeful to release dev version at next week and also with a easy solution of range field 🙂
Thanks.
September 21, 2014 at 1:24 am in reply to: How can I deactivate the "Profile_Updated" Message? #6335Khaled
MemberHi Martin, It is possible if it triggers with ajax update. Just put following code to your functions.php
add_action( 'user_meta_after_user_update', 'deactivateMessage' ); function deactivateMessage(){ if ( isset( $_REQUEST['is_ajax'] ) ) { die(); } }
Thanks.
Khaled
MemberUMP doesn’t support this but I think, you can find some plugin for this.
Thanks.Khaled
MemberIt is better to specify your login and registration page on User Meta >> Settings page for every site under the network, including primary site. Because, every site follows different UMP settings.
Khaled
MemberHi,
Sorry for being late. In multisite, if the user is a member of site and has a role, you can configure redirection by user-meta settings tab. Make sure that, you configured for the correct role. If you select, redirect to login page, don’t forget to select a login page under User Meta >> Settings (Login Tab).
However, if the current user is not a member of current site or has no role to current site, then he/she will be redirected to wp default (login page) after logout. As in UMP settings, there are no option to configure for no-role, you can add following code to your functions.php to allow non-member/non-role to redirect to targeted url.
add_filter( 'user_meta_logout_redirect', 'redirectForNonMember', 50, 2 ); function redirectForNonMember($redirect, $user) { $role = reset( $user->roles ); if ( empty( $role ) ) { $redirect = 'http://example.com'; } return $redirect; }
Thanks.
Khaled
MemberHi Antoine,
Please replace um_field_3_devenirmembre with field id (e.g: 3)
This is not html element id, you can find this id on User Meta >> Fields Editor.
(e.g.: Username (username) ID: 3 )Thanks.
Khaled
MemberHi,
Please go to User Meta >> settings and select profile page under profile page selection dropdown and check the related checkbox and update your changes. As an admin, if you visit users listing page, there is a new link named profile with each username. You can visit and update user’s profile from there.Thanks.
Khaled
MemberHi,
First UMP check for avatar on your server, then it will look for gravatar. You can remove avatar from your server but not from gravatar through UMP. However, if you wanted to hide gravatar, there is an option on Fields Editor to hide default avatar.Thanks.
Khaled
MemberHi,
Are you using UMP generated registration form?September 3, 2014 at 10:14 pm in reply to: Use custom field values as options in a dropdown or checkbox #6268Khaled
MemberHello,
Please checkout new gist on https://gist.github.com/khaledsaikat/7a87e3c39803617325a6Thanks.
Khaled
MemberHi, Please send direct url of your form to support(at)user-meta.com
Thanks.
-
AuthorPosts