BuddyDev

Search

Replies

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

    Hello Pooria,

    Thank you for posting. Please do let me know are you using BuddyPress or BuddyBoss Platform. If using BuddyPress also let me know which theme you are using.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Changing Colours of Text or Background #39843

    Hello,

    Thank you for posting. Please elaborate on your requirement. It is not making me clear on your issue i.e. Which colour of the text you are talking about?.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] BP notification are offset #39842

    Hello,

    Thank you for the acknowledgment. I am glad that the issue is resolved.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Hiding Roles and/or Last Active #39805

    Hello Alex,

    BuddyPress by default shows Member’s name and last active time and not the Role. Since you are using a paid theme you should ask for assistance from the theme author as he is in a better position to help you with this.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    This reply has been marked as private.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Sorry for the delayed reply. I will look into this today and will update you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Activity Plus Reloaded for BuddyPress #39779

    Hello,

    I have tested mentioned string with an image and it seems to be working on my end. Please try after deactivating other plugins and switching to the default theme temporarily and with BuddyPress and BuddyPress Activity Reloaded active state. If the issue still persists please let me know.

    Working Screenshot: https://tinyurl.com/yhuukcwl

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Auto join groups – cron job #39772

    Hello Darshan,

    Please try after activating both the plugins and remove all the rules created by “Auto Join Groups” and let me know if it helps or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Private groups #39771

    Hello Robert,

    Check the following code it will restrict non-admin users from posting content in the group.

    
    
    add_action( 'wp_ajax_post_update', function() {
    	$object  = isset( $_POST['object'] ) ? sanitize_key( $_POST['object'] ) : '';
    	$item_id = isset( $_POST['item_id'] ) ? absint( $_POST['item_id'] ) : '';
    
    	if ( bp_is_group() ) {
    		$item_id = bp_get_current_group_id();
    		$object  = 'group';
    	}
    
    	if ( 'group' != $object ) {
    		return;
    	}
    
    	if ( ! groups_is_user_admin( get_current_user_id(), $item_id ) ) {
    		wp_send_json_error(
    			array(
    				'message' => __( 'You are not allowed to post.', 'buddypress' ),
    			)
    		);
    	}
    }, 9 );
    
    

    Regards
    Ravi

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

    Hello,

    Thank you for sharing the details. We do not have access to the latest version of the plugin “Youzer”. Please share the latest version of this plugin so that I could help you.

    Regards
    Ravi