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: 25372
    Brajesh Singh on in reply to: buddypress cover photo in crop format #36718

    Hi,
    Thank you for the questions.

    We are unable to assist you with the implementation if you are looking for a crop user interface like avatar uploader.

    If you want to set a hard crop instead of resizing(without any UI), please let me know. We will assist you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372
    Brajesh Singh on in reply to: Buddy press profile tabs #36717
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25372

    Thank you Tosin.

  • Keymaster
    (BuddyDev Team)
    Posts: 25372

    Hi Deepa,
    Thank you for using the plugin and sharing the details.

    The code

    
    <span class=”bp-screen-reader-text”>Report</span>
    

    is not from our plugin. Are you using any 3rd party plugin for the same or does you theme provide this? Please try disabling the “Activity” module in the Moderation Tools plugin and let me know if both the button goes away or just one?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372

    Hi Hugo,
    Thank you for the
    Are you using any custom code to filter activity stream? Is it happening with CB or some other theme?

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372

    Hi Emanuele,
    Thank you for the reply.

    1. Please use the updated code. There was a bug in the previous snippet.

    
    
    /**
     * Add as friend other user with same member type on user member change.
     */
    add_action( 'bp_set_member_type', function ( $user_id, $member_type ) {
    
    	if ( 'partner' !== $member_type ) {
    		return;
    	}
    
    	$users = new BP_User_Query(
    		array(
    			'member_type'     => $member_type,
    			'populate_extras' => false,
    		)
    	);
    
    	if ( ! $users->total_users ) {
    		return;
    	}
    
    	foreach ( $users->user_ids as $id ) {
    
    		if ( $id == $user_id ) {
    			continue;
    		}
    
    		if ( ! friends_check_friendship( $user_id, $id ) ) {
    			friends_add_friend( $id, $user_id, true );
    		}
    	}
    }, 10, 2 );
    
    

    2. The above code is independent of the Friendship Pro plugin. It will work with any rules.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372
    Brajesh Singh on in reply to: [Resolved] Issues with Testimonials #36712

    Hi Khalid,
    Thank you for letting us know.

    I am glad you have resolved it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372
    Brajesh Singh on in reply to: Buddypress Poke Adjustments #36711

    Hi Tosin,
    Thank you for the suggestion. I have noted them for our future update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372
    Brajesh Singh on in reply to: Buddypress Profanity Filter #36710

    Hi Ravi,
    Thank you for the update.

    Hi @Fmd530
    I am sorry, I had seen some part of code and had assumed the support without checking settings. Ravi has updated the plugin now to include these.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25372

    Hi Tiffany,
    I am sorry, Our team could not get back to you early.

    It is not possible to apply elementor design to these plugins. If you want to do that, you will need to disable the Front end creation of posts and disable showing the single post on user profile. Now, You can create the post from WordPress dashboard and apply. The post list will be visible on user’s profile but single link will show the elemntor designed page as normal.

    Regards
    Brajesh