BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Alex,
    Thank you for purchasing from us.
    I am sorry, The plugin is not supported for BuddyBoss platform.

    We will issue the refund within 2-4 working days.

    In future, Please check the “Compatible with” option for our plugins. If a plugin supports BuddyBoss platform, It is specified there.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Greg,
    Marking it as resolved as per our email conversation.

    For others looking at it, It was a configuration issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Jasmina,
    Thank you.
    I am sorry I could not look into it last week. I had a look at the site today.
    Your theme has a modified workflow for MediaPress(They have created their own experience).

    The issue is related to how activities are posted. In default BuddyPress, the activity is posted via ajax request and we attach to the request to send the uploaded media id.

    In your theme’s case, a media id does not get send as the theme is using its own mechanism for posting activity.

    The following code that attaches media id to activity request

    
            jQuery(document).ajaxSend(function (event, jqxhr, settings) {
    
                if (is_post_update(settings.data)) {
                    var attached_media = mpp_get_attached_media();
    
                    if (attached_media) {
                        settings.data = settings.data + '&mpp-attached-media=' + attached_media;
                        mpp_reset_attached_media();
                    }
                }
            });
    

    is not getting called and media id is not associated with the posted activity. That’s why It is not working.

    Please consult your theme developers and let them know the issue. If they can send the media ids with the activity post request, It will work. If they need any assistance from us, we will be glad to help.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Prince,
    Hope you are doing well.

    We issued the refund yesterday. Please check your PayPal account for the same.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Benny,
    Thank you.

    I am very sorry for the inconvenience. Our documents need update. They are based on initial plugin update and does not contain the recent updates.

    We are going to update it soon.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Eric,
    You are welcome. I am happy it worked partially.

    The problem lies with

    
    bb_get_followers_count() 
    

    function. The function does not return follower count and seems to be named badly. Can you please ask them to provide us with a function that returns the actual count.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Stefan,
    I am sorry for the delayed reply.

    The solution of the default notification is already there. I had forgotten about it.

    Please visit Dashboard->Settings-> Recent Profile Visitors and click on “Default”. There you can set the default preference for users.

    For the icon, Please share me an example of notification with icon(screenshot) to help me understand it correctly.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Eric,
    Thank you.

    Please put this code in your bp-custom.php

    
    
    function bp_custom_add_member_follower_scope_filter( $qs, $object ) {
    	// not on the members object? stop now!
    	if ( 'members' !== $object ) {
    		return $qs;
    	}
    
    	// members directory
    	if ( ! bp_is_user() && bp_is_members_directory() ) {
    		$qs_args = bp_parse_args( $qs );
    		// check if members scope is follower before manipulating.
    		if ( isset( $qs_args['scope'] ) && 'follower' === $qs_args['scope'] ) {
    			$qs .= '&include=' . bp_get_follower_ids(
    					array(
    						'user_id' => bp_loggedin_user_id(),
    					)
    				);
    		}
    	}
    
    	return $qs;
    }
    
    add_filter( 'bp_ajax_querystring', 'bp_custom_add_member_follower_scope_filter', 30, 2 );
    
    /**
     * Add a "Following (X)" tab to the members directory.
     *
     * This is so the logged-in user can filter the members directory to only
     * users that the current user is following.
     *
     * @uses bp_follow_total_follow_counts() Get the following/followers counts for a user.
     */
    function bp_custom_follower_add_following_tab() {
    
    	if ( ! is_user_logged_in() ) {
    		return;
    	}
    
        // BuggyBoss has some messed up code, so this won't work.
    	$count = bb_get_followers_count( get_current_user_id() );
    
    	if ( empty( $count ) ) {
    		// return;
    	}
    
        $count = 0 ;// Ask BuddyBoss, not me.
    
    	?>
    
        <li id="members-follower">
            <a href="#"><?php printf( __( 'Followers<span>%d</span>', 'buddypress-followers' ), esc_html( $count ) ) ?></a>
        </li>
    
    	<?php
    }
    
    add_action( 'bp_members_directory_member_types', 'bp_custom_follower_add_following_tab' );
    
    

    It won’t show you the count initially as there is a bug in BuddyBoss, but clicking the tab will update the count and show the followers.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257
    Brajesh Singh on in reply to: Buddyblog duplicate posting prevention #52497

    Thank you for your feedback Tosin.

    I am not able to commit time on this currently. I will update you once we start working on this.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24257

    Hi Benny,
    Thank you for reporting.

    we don’t have any special integration with Elementor. The shortcodes should work as normal.

    In your case, It is probably the css of the area(width?) which is not allowing the media items as grid. Please link us to a page on your site using this shortcode with Elementor and we can look into the issue.

    Thank you
    Brajesh