Replies
- Brajesh Singh on April 23, 2021 at 5:03 pm in reply to: [Resolved] Is it to possible to exclude own profile from Root profiles code? #38266
Hi Carsten,
Thank you for the question.No, I am not seeing any simple way to achieve it.
Regards
Brajesh - Brajesh Singh on April 23, 2021 at 4:57 pm in reply to: BuddyPress Multi Network – Data disappears after registrations #38265
Hi Issam,
Thank you for the reply.1. Can you please check the blog id for the sub site and then check if the xprofile tables are created for that specific site?
Thank you
Brajesh- This reply was modified 5 years, 4 months ago by
Brajesh Singh.
- This reply was modified 5 years, 4 months ago by
- Brajesh Singh on April 23, 2021 at 4:56 pm in reply to: [Resolved] Send email to user that has been inactive for 2 months #38264
Hi,
Thank you for the question. This is a good requirement but we are unable to assist you here(This iwll need significant time and code)Here is what you can look for
1. setup a cron job daily checking of inactive users
2. Use a background queue to send emails to the users. You may want to check WP Background processing package.These are significant steps and the code is beyond what we can offer here.
Regards
Brajesh Hi Luca,
Thank you for using MediaPress.Please contact your web host and request support for installing the module.
Regards
Brajesh- Brajesh Singh on April 23, 2021 at 4:36 pm in reply to: [Resolved] Automatic field creation when creating a user group by group slug #38262
Hi Vlad,
That’s good to know.Regards
Brajesh - Brajesh Singh on April 23, 2021 at 4:36 pm in reply to: XProfile Custom Field Taxonomy Multiselect #38261
Hi Mark,
Thank you for the post. I am sorry to disappoint but the field is not searchable. The reason is the field is stored as serialized term ids.Regards
Brajesh - Brajesh Singh on April 23, 2021 at 4:27 pm in reply to: [Resolved] Conditional BuddyPress Registration fields enabled but not available #38260
You are welcome. I am glad it was not an issue.
Regards
Brajesh - Brajesh Singh on April 22, 2021 at 9:36 pm in reply to: [Resolved] Automatic field creation when creating a user group by group slug #38245
Hi Vlad,
Thank you.Here is the code for those steps.
// create profile add_action( 'groups_create_group', function ( $group_id, $member ) { $profile_group_id = 1;// the profile fiedl group where the new field will be stored. $group = groups_get_group( $group_id ); $field_id = xprofile_insert_field( array( 'field_group_id' => $profile_group_id, 'type' => 'textbox', // Your field type. 'name' => $group->name, 'description' => sprintf( 'Details for group %s', $group->name ), 'is_required' => false, 'can_delete' => true, ) ); // let us remember the field id for future usage. if ( $field_id ) { groups_update_groupmeta( $group_id, '_associated_profile_field_id', $field_id ); } }, 10, 2 ); add_action( 'groups_before_delete_group', function ( $group_id ) { $associated_profile_field_id = groups_get_groupmeta( $group_id, '_associated_profile_field_id', true ); if ( ! $associated_profile_field_id ) { return; } xprofile_delete_field( $associated_profile_field_id ); } );Please get in touch via our services section, we may be able to assist you next week onward with any custom code requirement. Our hourly fee for services is USD $90/hr.
Regards
Brajesh - Brajesh Singh on April 22, 2021 at 9:03 pm in reply to: Email Notification – buddyblog pro form workflow #38244
Hi Kateryna,
Thank you for using the plugin. It is a bug if this is happening. Our team is looking into it and we will make sure to test it before releasing tomorrow’s update.Regards
Brajesh - Brajesh Singh on April 22, 2021 at 9:01 pm in reply to: [Resolved] Conditional BuddyPress Registration fields enabled but not available #38243
Hi Carsten,
Thank you for the screenshot.It will only show if you scoped it to a few of the ember types.
Regards
Brajesh