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: 25486

    Hi Tosin,
    Are you referring to blog post comments?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Auto feature members #46004

    Hi Tosin,
    I am sorry, I haven’t look at that plugin and lack the time to check it. I will have some time in next 2 weeks to look at that and assist you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Joseph,
    Thank you for sharing the solution.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Joseph,
    Thank you for the question.

    Please use

    You can add custom link in the menu.

    You can use the following link

    
    http://yoursite.com/members/me/mediapress/
    

    Please change the http://yoursite.com/ with your actual site url.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Limit groups per user not working #45994

    Hi Daniel,
    Thank you for the post.

    We will have a re-look. It mostly depends on BuddyBoss platform and if that allows us to apply the limits or not.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Plugin Suggestion – Buddyress Antispam #45993

    Hi Tosin,
    Thank you.

    At the moment, we have no interest in the security solution anytime soon(It is on the cards in future).

    The captchas are mostly inefficient at blocking spam unless combined with other validation methods such as mobile verification etc.

    We did create a reCaptcha implementation years ago, did not release it to the public as we did not see any good improvement in stopping spam with it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Cristi,
    Thank you.
    We will have the solution in our next update.

    It is just a minor filter to disable the existing feature.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Joseph,
    Thank you for using MediaPress.

    Your second shortcode is correct

    
    [mpp-list-media for='displayed' type='photo']
    

    If it is not working, Please contact BuddyBuilder support and ask them if

    
    bp_displayed_user_id()
    

    function works with their profile?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Auto feature members #45988

    Hi Tosin,
    Here is your updated code

    
    
    add_action( 'transition_post_status', function ( $new_status, $old_status, $post ) {
    
    	if ( 'publish' !== $new_status || ! function_exists( 'bp_featured_members' ) ) {
    		return;
    	}
    
    	$user = get_user_by( 'id', $post->post_author );
    
    	if ( ! $user ) {
    		return;
    	}
    
    	$users_post_count = count_user_posts( $user->ID, 'post' );
    
    	$is_featured = bp_featured_members()->is_featured( $user->ID );
    
    	if( 25 == $users_post_count && ! $is_featured ){
    		bp_featured_members()->add_user( $user->ID );
    	} elseif( $is_featured && $users_post_count< 25 ) {
    		bp_featured_members()->remove_user( $user->ID );
    	}
    
    }, 10, 3 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Cristi,
    Thank you for reporting the issue.

    Yes, there were some issue with Pay per Post. we are in the process of releasing it on BuddyDev this weekend and it will have the fix.

    Regards
    Brajesh