Replies
- Brajesh Singh on February 20, 2023 at 7:40 am in reply to: [Resolved] Buddypress Profile Completion Not Working for New Required Fields #48479
You are welcome Philip.
- Brajesh Singh on February 20, 2023 at 7:39 am in reply to: [Resolved] Don’t delete buddupress user, just saw him a msg. #48478
Hi Lefteris ,
Thank you for the question.I am sorry, I am unable to look into the code and assist with it currently.
My suggestion will be to use Deactivate Account plugin and enable it for the roles. Use localization to achieve the message. When a user deactivates their account, you will get an email and delete them.
That is almost same experience.
Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on February 20, 2023 at 7:36 am in reply to: [Resolved] BuddyBlog Groups – 1.0.0-RC-3 – possible bug? #48476
Hi Nik,
I have tested it now.
It is not appearing for us even if we enable the submission/pending.Can you please enable WP debug logging and share me the log. The only possibility is calling an undefined function related to group but that will be very strange.
Regards
Brajesh Hi Nik,
Thank you for your patience.
This was an issue in BuddyBlog Pro. My apologies for missing it.
I have fixed it now.Please do note that you must specify a default term if you do not want all terms to be selected. This will work with our release coming up this week.
Regards
BrajeshHi Tosin,
Hope you are doing well.
I had a look at the plugin and it does not provide an entry point to disable the ajax.you may try adding this code to see if it works(we are turning of event handler using js)
/** * Disable ajax for follow button */ function tosin_disable_ajax_bp_follow() { ?> <script> (function ($) { let $itemButtons = null; if ($('body.bp-nouveau').length) { $itemButtons = $("ul.member-header-actions"); } else { $itemButtons = $("#item-buttons"), } if ($itemButtons && $itemButtons.length) { $itemButtons.off('click', '.follow-button a'); } })(jQuery); </script> <?php } add_action( 'wp_footer', 'tosin_disable_ajax_bp_follow', 100 );Regards
Brajesh- This reply was modified 2 years, 8 months ago by
Brajesh Singh.
- This reply was modified 2 years, 8 months ago by
Hi John,
Thank you for checking.
It will be available by day end Tuesday.Regards
BrajeshAlso, is there any chance that you are using profile visibility plugin? That can cause the members to be hidden.
Regards
BrajeshHi Jimmy,
Recent visitors does not add any css, so it is probably some markup/theme compat issue. Please link me and I will assits.
Regards
Brajesh- Brajesh Singh on February 16, 2023 at 7:28 pm in reply to: [Resolved] Buddypress Profile Completion Not Working for New Required Fields #48456
Hi Philip,
Welcome back.This is the expected behaviour with profile completion.
Once a profile is marked as complete, we store a user meta with the user and a user with this meta will never be checked again for profile completion unless the user updates their profile again.
This is for efficiency purpose. For that reason, the only way to re-enforce checking will be to delete the user meta ‘_has_required_field_data’ for all users.
I don’t see any other way around in current version. There may be a better solution in future version where we could simply increment a value when admin changes profile fields and use that for comparison/flag.
Regards
Brajesh