Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hi,
You can insert yes=Subscribe inside field options. and can remove field title. Or you can simply put yes into field option.Thanks.
KhaledMemberHi,
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.
KhaledMemberHi,
Please send an email to support(at)user-meta.com with your site url and this topic link.
Thanks.
KhaledMemberHi 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? #6335KhaledMemberHi 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.
KhaledMemberUMP doesn’t support this but I think, you can find some plugin for this.
Thanks.KhaledMemberIt 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.
KhaledMemberHi,
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.
KhaledMemberHi 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.
KhaledMemberHi,
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.
KhaledMemberHi,
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.
KhaledMemberHi,
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 #6268KhaledMemberHello,
Please checkout new gist on https://gist.github.com/khaledsaikat/7a87e3c39803617325a6Thanks.
KhaledMemberHi, Please send direct url of your form to support(at)user-meta.com
Thanks.
-
AuthorPosts