Aswin Giri
Forum Replies Created
-
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] WP Astra + Elementor + ForumWPHello @dooza
Thank you for letting us know how you managed to solve the issue. We will definitely look into the issue and add a solution in the future versions.
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] WP Astra + Elementor + ForumWPHello @dooza
Please remove the single template for cpt and navigate to wp-admin > settings > permalink and see if that fixes the issue.
Hello @mrsba
If you are looking to add custom validation for the fields, please take a look at this documentation.
Hello @vfero
If you have information to display and just need a way to display it on profile card. You can use following hook for the profile card:
do_action( 'um_members_after_user_name_tmpl', $args );For the profile page, you can use following hook:
do_action( 'um_profile_header', $args );Hello @plutonash
You can use same profile form for multiple user roles but if you have different fields for specific user roles, its better to create separate profile form for that user role.
Hello @capilla10
I am sorry, I could not understand the issue you are having. Kindly write in details about the issue you are having.
Hello @barby81
Thank you for reporting the issue. We will definitely look into the issue and come up with a solution for you.
Hello @pressonforlife
To send password in the email, you can use {password} placeholder in the email template. Regarding MailChimp, free version of UM does not have any integration to MailChimp however there is an extension for integration with MailChimp. I suggest you look into the documentation for the extension on Ultimate member website.
Hello @w-prog
Please try adding this code snippet to your theme’s functions.php or use code snippets plugin to add it to your site.
Forum: Plugins
In reply to: [ForumWP – Forum & Discussion Board] WP Astra + Elementor + ForumWPHello @dooza
Are you overriding forumwp templates from your theme? Or have you created a custom template for single forum?
Hello @joeyjosay
Currently, Ultimate Member (UM) does not offer native integration for Advanced Custom Fields (ACF) within its profile forms without utilizing the UM form builder. However, a practical workaround involves creating corresponding ACF and UM profile fields that share the same meta key. This approach ensures that any data entered in the ACF field will automatically reflect in the UM field, and vice versa.
If you are planning to use an ACF field within a custom account tab in Ultimate Member, you will need to implement custom code to handle data saving. For further guidance and implementation examples, you can refer to the documentation or examples provided here.
Hello @kampot888
Thank you for your suggestion. We will definitely consider this for future versions.
Hello @hmcody
Please try following code and see if this works:
add_action('user_register',function( $user_id ){
if (is_admin() && current_user_can('administrator')) {
UM()->common()->users()->approve($user_id, true);
}
});Hello @peterleenders
You can try changing user status to “Membership inactive”.