BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: [Resolved] Posting in groups #46647
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    Hi Christian,
    Thank you for the patience.

    The message can be filtered and we will add the support next week.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    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