Replies
- 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 - Brajesh Singh on April 22, 2021 at 8:41 pm in reply to: [Resolved] Single Member Type fields with no default value, are assigned with Member Types #38242
Thank you Carsten,
I will be reaching out in couple of days after investing your other topic.Regards
Brajesh - Brajesh Singh on April 22, 2021 at 8:27 pm in reply to: Each site has its own profile page and needs separate setup each #38241
Thank you.
- Brajesh Singh on April 22, 2021 at 8:27 pm in reply to: BuddyPress Multi Network – Data disappears after registrations #38240
Thank you for confirming.
Is the profile page of the user being accessed on main site and not the sub site? Or is that a domain mapped sub site(I am not sure due to the site language).
Please let me know.
PS:- In case we need further investigation, can you please let me know if you are comfortable with checking a few details in phpmyadmin/cpanel.
Regards
Brajesh Hi Nik,
Thank you. I am doing a lot better and hoping to get back to the regular work in next couple of days.Regards
BrajeshHi,
Thank you for the reply.You will need to load the translation from MediaPress and then search/translate that specific string.
If you add it other way, It won’t work. Please give it a try.
Regards
Brajesh- Brajesh Singh on April 22, 2021 at 8:18 pm in reply to: [Resolved] BuddyBlog – How to Add Multiple Images to a Post #38236
Hi Ryan,
Thank you for the kind words. I am glad I was able to assist.Regards
Brajesh Hi Carsten,
It seems to me that your theme or you have applied css which are very targeted at specific loop.The Recent visitors plugin loads ‘members-loop.php’ from your theme or template pack(for directory page) and if it looks any different from your other directories, most probably the theme has very specific targeting.
I will suggest exploring the same to see what could be the issue.
I can check in the free theme but will need couple of days before doing that.
Regards
Brajesh