SuitePlugins
Forum Replies Created
-
I looked at the source code and I can see it’s actually linked to the role field. I tried to replicate it on my site but I didn’t get the same results. Do you have any custom code or plugins on your site?
I think something is making several of the fields display only display the role dropdown.
I am using version 2.0.38 and it all feels. Can you send me an email here, I’d like you to try an alternative search to see if it works better.
Can you send me a link to the search page with the search form. I am sure I can help you, I am just making sure I understand the issue.
Are you saying the dropdown is not showing your roles as options OR the search is not searching for users with the role you would like?
I have received similar requests about Profile Picture upload on registration form and I took a quick glance at the time and couldn’t find a solution but I will revisit this again.
However, as for your suggestion you can the get_avatar hook to manipulate the profile picture.
Based on what you have mentioned here, I am going to investigate how to get profile pictures in the registration form as well as an avatar picker as an option.
They $key refers to the meta key. So you would write it like so
add_filter( 'um_edit_id_01_field_value', 'my_edit_field_value', 10, 2 );The tutorial that you took this from is out dated. Ultimate Member 2.0 does not use the global variable $ultimatemember. Here is the updated code that should work
<?php add_action('um_submit_form_errors_hook_','um_custom_validate_mail', 999, 1); function um_custom_validate_mail( $args ) { if ( isset( $args['user_email'] ) && filter_var($args['v'], FILTER_VALIDATE_EMAIL) ) { $explode_array = explode( '@', $args['user_email'] ); $domain = $explode_array[1]; if ( $domain != "<MAIL_DOMAIN>" ) { UM()->form()->add_error( 'user_email', 'Your mail address must contain the domain <MAIL_DOMAIN>.' ); } } }Can you explain further about what you mean by blog subscription opt in.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Contact Form 7Hey @jstrategy,
I was away at the time your message came through. Just sent you an email, I see you sent a message via the chat that I never got notified about.
We can discuss it further via the site when you get a chance since this out outside of the scope of the WordPress forums.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Contact Form 7That is correct, MAILTO: EMAIL will be the one on the user’s profile.
What is Flamingo?
Yes, there is a refund policy on the site with money back guarantee.
I am happy that you are enjoying the basic tab creator, I wanted to add enough features to make truly worthwhile.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] Tab builder setupThanks for mentioning this. I will have this corrected.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Gallery on the profile’s main tabThanks for reaching out and bringing this to our attention, we will fix this issue for you.
Shouldn’t you be passing the $user_id instead of getting the current logged in user like the following:
$this->custom1 = get_user_meta( $user_id, 'grade_19', true );Admin features were enabled in the latest update. Marking this as resolved now.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Reset password isn’t workingThanks for letting me know. Are you using an Ultimate Member form or the default WP form?
I haven’t tested this all out but I think the hooks available here would be more along the lines of getting a profile contact form using Ninja Forms.
I can’t write out all the code at the moment so I’ll explain a way to get to a solution using Ninja Forms.
- Add a custom tab to Ultimate Member Profile. See here
- Inside of the content of the tab, add a ninja form shortcode
- Using a Ninja Form hook, check to see if the submission is coming from a profile and if it is, then get the user email of that profile and change the recipient email to the profile email
So with the above mentioned, that’s one way to get a Contact Form embedded on a profile.
I am already supporting Contact Form 7 in my plugin but I will be extending it to Gravity Form, Ninja Form and WP Form.