SuitePlugins
Forum Replies Created
-
I think that is a cool idea but also I don’t think the option to collapse menus is a BuddyPress thing but something developed by BuddyBoss the theme and developer company.
So I think both plugins should adapt it.
This may be a tricky one and I haven’t fully tested it out but here’s a way to create a delete post link https://generatewp.com/snippet/ov3xy5k/
Then you’ll need to edit the post template to add the delete button, you can find more about that here.
There are couple things to look out for:
1. Does user have user permission to delete a post
2. Restricting the delete button to just the owner of the postGreat. Don’t forget to mark the topic as solved. 🙂
You can try this function
/** * get user avatar url * * @param $user_id * @param $size * * @return bool|string */ function um_get_user_avatar_url( $user_id = '', $size = '96' ) { $data = um_get_user_avatar_data( $user_id, $size ); return $data['url']; }Sounds good.
I will go ahead and try to make this then create a tutorial with a file for it.
I will keep you posted.
This sounds interesting. Are you saying you would like profile fields to be like a hidden field when using contact form 7 or be able to insert UM profile fields into the message when sent?
Looking forward to your reply.
I tested this code and it works just fine outside of WordPress. So, I would have to say no there aren’t any extra filters that would stop this from working.
Did you check the source code to see if it tried to load anything?
What you would need to do here is use this filter um_account_page_default_tabs_hook
With this filter, you can find out all the available menu items and change the order number to move their position or change the string to change their names.
Another option here is to translate the string. https://www.wpbeginner.com/wp-tutorials/how-to-translate-a-wordpress-plugin-in-your-language/
I think the action you are looking for is
do_action( 'um_submit_form_errors_hook_login', $args );ordo_action( 'um_submit_form_errors_hook_logincheck', $args );Found in ultimate-member/includes/core/um-actions-form.php
Yes, you can use the WordPress action wp_logout to hook into when a user logs out.
You can hook into that to try clear cookies.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Remember me@ac2017,
Sorry about the delay in my response. I have added an option to hide the remember me checkbox from the default WordPress login form.Thanks for reaching out.
I just saw your message via email and I am currently drafting an email. It is against WordPress forum policy to discuss premium plugins via the forum so I will close this and be in touch via email.
Hey @vrdpe,
I’d be happy to try and help you resolve these issues.
1. Can you provide a link to a profile that is not being displayed? Did you add any permissions/restriction to the page so not everyone can see it?
Basically, if a shortcode displays nothing then the shortcode works but something is off in the way it is configured but if it displays the shortcode raw then it is not working at all.
2. Can you share which instructions you are looking at? I may be able to guide you and let you know if they are out of date.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] security issue?For your side question, the answer is Yes. The roles can view this tab should be ignored when set to private.
Forum: Plugins
In reply to: [Ultimate Member Custom Tab Builder Lite] security issue?Thanks for mentioning this. I am going to investigate this to see what is causing the issue.