BuddyDev

Search

Replies

  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: [Resolved] Buddypress member types pro visibility issue #52910
    This reply has been marked as private.
  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: [Resolved] Buddyblog duplicate posting prevention #52775

    Hi Brajesh

    Please dont forget about this awesome request

    Thanks

  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: [Resolved] Buddyblog duplicate posting prevention #52459

    Hello Brajesh

    Sorry for the delayed feedback

    1. We can check for the posts of the current loggedin users
    2. We can can scope it to only selected post types. (admins should be able to select the post types the scope should be applicable to)

    Thanks

  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: Buddyblog limit submissions addon suggestion #51802

    Hello Ravi,

    I finally think this code work can you review it

     add_filter( 'bblpro_user_can_create_post', function ( $can, $user_id, $post_type ) {
    
        // Not user's profile, return without modification
        if ( ! bp_is_my_profile() ) {
            return $can;
        }
    
        if ( 'post' === $post_type ) {
            $posts_limit = 5; // Adjust the daily limit as needed
    
            $today = date( 'Y-m-d' ); // Get today's date
    
            $args = array(
                'numberposts' => -1,
                'post_type'   => $post_type,
                'fields'      => 'ids',
                'author'      => $user_id,
                'date_query'  => array(
                    array(
                        'after'     => $today . ' 00:00:00',
                        'before'    => $today . ' 23:59:59',
                        'inclusive' => true,
                    ),
                ),
            );
    
            $posts_count = get_posts( $args );
    
            if ( ! empty( $posts_count ) && count( $posts_count ) >= $posts_limit ) {
                $can = false; // User has reached the daily limit
            }
        }
    
        return $can;
    }, 15, 3 );
     
  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: Buddyblog limit submissions addon suggestion #51801

    this is a rough work

    
     add_filter( 'bblpro_user_can_create_post', function ( $can, $user_id, $post_type ) {
    
        // Check if it's a post creation attempt and the user is logged in.
        if ( 'post' !== $post_type || ! is_user_logged_in() ) {
            return $can;
        }
    
        // Get the posts limit.
        $posts_limit = 1;
    
        // Get the last post creation timestamp for the user.
        $last_post_time = get_user_meta( $user_id, 'last_post_time', true );
    
        // If the last post time is not set or it's been more than 24 hours, reset the counter.
        if ( empty( $last_post_time ) || strtotime( $last_post_time ) < strtotime( '-1 day' ) ) {
            // Reset post count.
            update_user_meta( $user_id, 'post_count', 0 );
            update_user_meta( $user_id, 'last_post_time', current_time( 'mysql' ) );
        }
    
        // Get the current post count for the user.
        $post_count = get_user_meta( $user_id, 'post_count', true );
    
        if ( $post_count >= $posts_limit ) {
            $can = false; // User has exceeded the daily limit.
        } else {
            // Increment the post count and update the last post time.
            $post_count++;
            update_user_meta( $user_id, 'post_count', $post_count );
            update_user_meta( $user_id, 'last_post_time', current_time( 'mysql' ) );
        }
    
        return $can;
    }, 15, 3 ); 
    

    The problem is how to not restrict old users who have already published old posts over the post limit. I would have preferred the limit to start afresh for old users

  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: Buddyblog limit submissions addon suggestion #51800

    Hello Ravi

    I would prefer to limit post creation to 10 per day for all users

    Maybe a buddyblog integration with this plugin can help https://wordpress.org/plugins/user-posts-limit/

  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: Buddyblog Pro – add/remove visibility option #51766

    Ok Thanks for the detailed explanation, now I understand better

  • Participant
    Level: Guru
    Posts: 900

    Hello Ravi

    Gentle reminder

    Thanks

  • Participant
    Level: Guru
    Posts: 900
    Tosin on in reply to: Buddyblog Pro – add/remove visibility option #51734

    Hello Brajesh

    Please how is development on this alos, would you still consider the follow integration since buddypress devs are considering adding the follow plugin into buddypress core

    Thanks

  • Participant
    Level: Guru
    Posts: 900

    This did not work.

    I want all those codes enabled, they all work seamlessly when the feature (Override member avatar) is disabled in the member types pro plugin.

    But when the (Override member avatar) feature is enabled new users are no longer forced to upload their profile picture

    The Override is acting as if new users have already uploaded their profile photo mean while its meant to behave as if users have not uploaded their first pictures since they newly registered.