BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Position user badge behind active time #48242

    Hello Daniel,

    Please try the following CSS rules and let me know if it helps

    
    #item-header-content .bp-user-badges-badge-list {
    display: inline;
    }
    
    #item-header-content .bp-user-badges-badge-list img {
    margin-top:0
    }
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Fran,

    Thank you for the acknowledgment. I am glad that you solve the issue on your own.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Recent visitors displayed on settings pages #48156

    Hello,

    We have released the new version of the plugin i.e. ‘1.7.0’. Please upgrade your plugin and give it a try.

    Plugin url: https://buddydev.com/plugins/recent-visitors-for-buddypress-profile/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Notify Friends When a User Posts #48040

    Hello,

    Thank you for posting. Does you have a look on Group Activities Notifier plugin. If not, Please have a look here:

    https://buddydev.com/plugins/bp-group-activities-notifier/

    Please let me know if it full-fills your requirements.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Yes you can delete the option it will not cause any problem. But, If any issue comes please update the settings and then try.

    Please let me know if if everything works fine or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyBlog Pro – override Submit Post for Review #47908

    Hello Nik,

    Please try the following code and let me know if it helps or not

    
    add_filter( 'bblpro_form_post_status', function ( $post_status, $form_id ) {
    
    	if ( is_super_admin() || ! is_user_logged_in() ) {
    		return $post_status;
    	}
    
    	$form_type = bblpro_get_form_type( $form_id, 'members' );
    
    	if ( 'members' == $form_type ) {
    		// Replace with your roles.
    		$skipped_roles = array( 'editor' );
    		if ( 'pending' == $post_status && bblpro_user_has_role_in( get_current_user_id(), $skipped_roles ) ) {
    			$post_status = 'publish';
    		}
    	}
    
    	return $post_status;
    }, 10, 2 );
    
    

    Regards
    Ravi

    • This reply was modified 2 years ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    I have updated the plugin “BP Private Message Rate Limiter”. Please upgrade to the latest version and give it a try.

    Regards
    Ravi

    • This reply was modified 2 years ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Thank you for the acknowledgement. I have tested the plugin and it is working fine please give it an another try with different settings. Also, BuddyPress does not show private message button on members directory it is your theme that is adding this button on directory so please contact theme for the issue as they can help you in a better way with this issue.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Thank you for the acknowledgement. I am glad that it worked.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Emmanuel,

    Thank you for the acknowledgment. Please update the code with:

    
    add_action( 'bp_template_redirect', function () {
    	// assuming that you are trying to protect 'pages' not other content.
    	if ( ! is_page() ) {
    		return;
    	}
    
    	if ( is_user_logged_in() ) {
    		buddydev_redirect_members_from_restricted_pages();
    	} else {
    
    		if ( bp_is_user_activity() ) {
    			$redirect_url = trailingslashit( bp_core_get_user_domain( bp_displayed_user_id() ) ) . bp_get_activity_slug();
    			bp_core_redirect( wp_login_url( $redirect_url ) );
    		}
    
    		buddydev_redirect_visitors_from_restricted_pages();
    	}
    } );
    
    

    Regards
    Ravi