Replies
- Brajesh Singh on September 26, 2022 at 9:03 am in reply to: Is it possible to embed an iframe in a subnav from front end #46652
Hi Luke,
Welcome to BuddyDev support forums.Thank you for the question.
At the moment, the profile tabs plugin does not have any ability to receive update form user.This feature will most probably require custom development.
Regards
Brajesh - Brajesh Singh on September 26, 2022 at 8:53 am in reply to: [Resolved] xProfile Custom Field Types #46651
Hi Ed,
Hope you are doing well.I had a look.
The problem lies with pmpro removing the ‘public’ visibility levels.Here is the code in PmPro that is causing it.
/** * Remove "Public" status from XProfile fields when non-members restricted. * * @since 1.3 * @param array $labels of field types for XProfile Fields. * @return array $labels of field types for XProfile Fields. */ function pmpro_bp_hide_public_non_members( $label ) { $non_user_options = pmpro_bp_get_level_options( 0 ); if ( $non_user_options['pmpro_bp_restrictions'] !== PMPROBP_GIVE_ALL_ACCESS ) { unset( $label['public'] ); } return $label; } add_filter( 'bp_xprofile_get_visibility_levels', 'pmpro_bp_hide_public_non_members' );Please report it to PMPro developers and they will provide a graceful fallback.
Regards
Brajesh - Brajesh Singh on September 26, 2022 at 6:20 am in reply to: Moderation Tools: Error When Trying to Make a Report #46649
Hi,
Thank you for the details.From your response, My guess is Cloudflare is preventing access to wp-admin/admin-ajax.php
Can you please check it with them and see if there is any restriction?
Regards
Brajesh - Brajesh Singh on September 26, 2022 at 6:13 am in reply to: BuddyBlog Pro – BuddyBoss – Ability to link and restrict a post to a group #46648
Hi,
Hope you are doing well.
We could not release the update last week.We will be releasing the update by the end of the day, Wednesday(28th) now.
Thank you
Brajesh - This reply has been marked as private.
- Brajesh Singh on September 25, 2022 at 12:00 am in reply to: [Resolved] BuddyPress Profanity Filter and BP Better Messages #46643
Hi Christian,
Thank you for the patience.The message can be filtered and we will add the support next week.
Regards
Brajesh - Brajesh Singh on September 24, 2022 at 1:20 pm in reply to: Moderation Tools: Error When Trying to Make a Report #46642
Hi,
Thank you for the details.
Those error do not specify any reason for the issue.Do you have any staging environment same as the luve server? If yes, Please allow me temporary access to the site to debug it.
Thank you
Brajesh - Brajesh Singh on September 24, 2022 at 1:13 pm in reply to: [Resolved] Connecting Xprofilefields to User insights #46640This reply has been marked as private.
- Brajesh Singh on September 24, 2022 at 1:08 pm in reply to: [Resolved] Connecting Xprofilefields to User insights #46637
Hi Ethan,
Thank you.If you can provide us a copy of userinshights, we can certainly look into it and provide a patch. I believe that the right solution will be to have a patch in the userinsights plugin to avoid it being lost in future versions.
Regards
Brajesh - Brajesh Singh on September 24, 2022 at 1:01 pm in reply to: [Resolved] Connecting Xprofilefields to User insights #46635
Hi Ethan,
From your screenshot, It seems they are fetching the profile data using their own database methods and treating the field type as text for any field not matching their predefined list.BuddyPress has an APi function for fetching a field’s data(xprofile_get_field_data). When this function is used, It fires some of the filetsr which are used by field type to format data.
I hope that helps.
Regards
Brajesh