BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: How to get rid of this at sign? #55061

    Hi Josh,
    Thank you for the question.
    The simple solution is to use css.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827

    Hi Joh,
    I am sorry for the delay in reply.

    Please use this code, it will completely disable the linking.

    
    
    add_action( 'bp_init', function () {
    
    	$priority = has_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data' );
    
    	if ( false !== $priority ) {
    		remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', $priority );
    	}
    
    } );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827

    Hi,
    Welcome to BuddyDev support forums.

    I am sorry for the delayed reply. Can you please share more details:-
    – Is it for BuddyPress or BuddyBoss?
    – Is it happening for all groups or one of private/public/hidden groups?
    – Is it happening for any specific type of activity or all type

    Which plugin(BuddyPress/BuddyBoss) and theme are you using?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: BuddyBlog Pro – Groups – Activity Entries #55058

    Hi Nik,
    I am sorry, I had couple of bad work weeks recently and could not do much about it. Please allow me till day end this Wednesday, I will have a proper explanation/solution.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: Continer Class issue with Activity Plus Reloaded #55057

    Hi Lea,
    Hope you are doing well.

    Which theme and template pack are you using? Is it happening on post from profile activity stream or sitewide(or both).

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: Rename Circles? #55039

    Hi Lawrence,
    To answer your question.
    1. Does BuddyBoss allows sending message to all friends in one go? No. This is not a standard functionality and we do not have it in the plugin.

    2. I am sorry, we do not offer text replacement inside the plugin. We support localization though. It is a standard practice to have localizable software where UI texts can be customize via localization tools. You need a way to localize. We do not offer changing labels via plugin settings, that would be hard coding and make it quite less flexible for locales outside English.

    You do not need to install a plugin to localize other plugins(if performance is your concern), there are standard software like poedit where you localize at your local system and upload to your server.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: Cover Photos Moderation #55038

    Hi,
    I am sorry. We do not offer this functionality and there is no plan for such functionality for BuddyPress in near future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: Help Needed with Profile Completion Plugin #55037

    Please put it in your theme’s functions.php

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827
    Brajesh Singh on in reply to: Help Needed with Profile Completion Plugin #55031

    Thank you.

    In that case the following code will avoid redirection.

    
    
    /**
     * Do not redirect on page 1401.
     */
    add_filter( 'bp_force_profile_completion_skip_check', function ( $skip ) {
    	if ( is_page( 1401 ) ) {
    		$skip = true;
    	}
    
    	return $skip;
    } );
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24827

    Hi Josh,
    Thank you for the question.

    I will list the issues you are facing and the probably solutions.

    
    1. Is it possible to stop access to members directory page?
    

    Yes, we can simply check if it is members directory page and not single member page, redirect to somewhere else.

    2. The profile page data links to directory, now that would be a problem as BuddyPress files your profile data and links to directory in a searchable format.
    The solution would be to either disable this linking completely or put Andrea’s search plugin’s search form on your members directory.

    I can help with your question 1 but I lack time to assist you the issue 2. Please let me know if you need code for 1.

    Regards
    Brajesh