Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Fabricio,
    Thank you for the reply.

    No issues with the language.

    Can you please tell me which one of the following 2 emails are not going:-

    1. Email after registration which asks for verifying the email and activating the user account.

    2. Welcome email after the user activates their account.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi John,
    I am sorry, we are not using RT Media. So, I and my team may not be able to assist with it. I hope that someone form the community is able to help you.

    It should not be difficult as you can check on the $activity_type from this function.

    https://buddydev.com/support/forums/topic/disable-the-comment-action-until-the-users-are-become-friends/#post-41152

    Or, if you can tell me their activity type(is it rtm_update?), I can assist with the code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Issues with BP Deactivate Account #41165

    Hi Khalid,
    Thank you.

    I see, it is different issue. I was deactivating account and was referring to that. I will push a fix within 2 working days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Xprofile Tag field #41164

    Hi Christopher ,
    Thank you.

    I am very sorry but I do not understand the correlation between the user tags and content tags. I assume these are different things. Please help me understand it a bit better.

    The tag field was introduced recently and It is not yet supported in Auto Jon Groups. We will add it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: [Resolved] Buddypress group is not member redirect #41163

    You are welcome.

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi John,
    Thank you.

    It’s a pleasure. Thank you for the kind words.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384

    Hi Fabricio,
    Thank you for the reply.

    To be honest, we do not send any email. It is BuddyPress core, sending the emails.

    1. Can you please confirm that the user who selects “commercial” type appears registered in your Dasboard->Users screen?

    2. Also, Please check the spam email to see if there is anything(content) that might be triggering it as spam email.

    Please share your findings.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Disable subnav friends #41159

    Hi John,

    Thank you for the question.

    Please use the following code.

    
    
    /**
     * Removes the 'friends' sub nav from activity.
     */
    add_action( 'bp_activity_setup_nav', function () {
    
    	if ( ! bp_is_active( 'friends' ) ) {
    		return;
    	}
    
    	bp_core_remove_subnav_item( bp_get_activity_slug(), bp_get_friends_slug() );
    } );
    
    /**
     * Removes 'friends' from account drop down menu in the admin bar.
     */
    add_action( 'bp_activity_setup_admin_bar', function () {
    
    	if ( ! bp_is_active( 'friends' ) ) {
    		return;
    	}
    
    	global $wp_admin_bar;
    	$wp_admin_bar->remove_node( 'my-account-activity-friends' );
    } );
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25384
    Brajesh Singh on in reply to: Problem with the feed of the activity of member #41158

    Hi Alison,
    Thank you for the question.

    You are using Divi builder which is causing it. BuddyPress is trimming the content from non parsed post content.

    The simplest solution will be to apply ‘et_strip_shortcodes’ on the activity content but a better solution will be to filter on ‘bp_activity_create_summary’ and get some code suggestion from Elegant theme on what is the best way for generating excerpt.

    Regards
    Brajesh