mansurahamed
Forum Replies Created
-
Hi @anish12345,
That’s not possible. You can go to Ultimate Member->User Role->Your user’s role->Edit->Registration option, and choose Require admin review there. Then user will only get approved when you approve them from users menu inside admin. So the approval email will be sent then too only. If your user’s accounts get approved automatically, there is not need to select approval button from UM action. Hope it’s clear.
Thanks.
Hi @anish12345,
Add following snippet in your child theme’s functions.php file which should do the trick
add_filter( 'um_admin_bulk_user_actions_hook', function($actions ){ unset($actions['um_approve_membership']); unset($actions['um_put_as_pending']); unset($actions['um_resend_activation']); $actions['um_reenable']['label'] = __( 'Account Reactivate', 'ultimate-member' ); $actions['um_deactivate']['label'] = __( 'Account Deactivate', 'ultimate-member' ); $actions['um_reject_membership']['label'] = __( 'Inactive Account', 'ultimate-member' ); return $actions; }, 10, 1 );
Thank you.
Hi @vivibosslink,
Please follow this docs for that. https://docs.ultimatemember.com/article/1337-replace-wp-native-login-urls
Adding this snippets in your child theme’s functions.php file should solve your issue.
Thanks.
Hi @segamaze,
Yes, you can simply use the update_user_meta() function to save the follower count for each user in the wp_usermeta table by their user ID. The metakey name is important here as we will use it to show that particular entry in profile form.
Now just go to Ultimate Member->Forms->Your Profile Form->Edit, inside your dashboard and add a custom text field in the profile form using the exact same metakey. Make sure to set Visibility mode to view mode only so that user won’t be able to modify it. That’s it, user should see followers count in profile now. If your code of update_user_meta() updates the value time to time, it should happen to UM profile too as the value get fetched using the same metakey. Hope this helps.
Thank you.
Hi @aidaasyafiqahh,
Please exclude your password reset page from any cache plugin that you are using and any server-side cache if active. See if that solves this issue.
Thanks.
Hi @baedyllion,
Could you please share screenshot of your full member directory settings? Did you choose any role in “User Roles to Display” setting? Admin might have access to those role but other users might to view those users that could the reason you are having this issue.
Thanks.
Hi @neoset,
You have to check with Jetformbuilder support if they have any action hook to set the email using hooks before rendering the form. You can easily set the email using this code then in the profile assuming you need the email of profile owner
um_fetch_user(um_profile_id());
um_user(‘user_email’);If its possible to change this email using jQuery, you can do that too after the page is loaded using jQuery and php. Use above code to get the email and jQuery to change the email value.
Thanks
Hi @justaniceguy,
We are unable to replicate this issue in our test server or other users haven’t reported this issue yet. Do you have more than one profile form? Could you please recheck if this is rendering from other profile form? Other than cache this shouldn’t happen, you can also contact your hosting provider and try excluding your UM User page from any server-side caching active.
Thanks.
Hi @andrewh1350,
Are you using any custom code in your theme’s functions.php file that is related with Ultimate Member? If you are not able to edit the theme file from inside your dashboard, that means you are having any code that is throwing an error.
Thanks.
Hi @monkeyvisionnl,
You need to add the Username field in your registration form. This is s predefined field, you should be able to add it in your registration form from Ultimate Member->Forms->Your Registration Form->Edit, inside your dashboard.
Thanks.
- This reply was modified 2 years, 8 months ago by mansurahamed.
Could you please go to Ultimate Member->Settings->Email, inside your dashboard and see if those emails are turned on. For example by default activation email is turned off in this settings. You need to turn on these. Let us know if that solves your issue and you receive the emails then.
Thanks.
Could your provide more description of specific issues that you are having and your requirement? What kind if speed issue aye you having?
Thanks.
Hi @bibuconnect,
You need to use this code where you want to show the pictures. This is not something which is useful with copy paste. You need to change the metakey of your image field too. You will probably need to edit your theme template file to edit/ use this thus coding experience is required.
Thanks.
Hi @eyewebdesign,
Did you try to approve him from Users menu inside your dashboard as admin? Do you see the status Approved there?
Thanks.
Hi @nathaniel45,
It’s not possible to change default predefined field type, different field types saves data in different format. You can create a custom dropdown field for gender field if you want to use the dropdown instead. That will work exactly like the predefined gender field and you will be able to use that custom field in member directory filter too.
Thanks.