BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Branded Login Plugin – Can't get it to work #29445

    Hello Justin,

    I have checked and not able to reproduce this kind of error. Please let me know which theme you are using. In case you are using any other theme except the WordPress default theme. Please switch to the default theme and give it a shot. Some chances theme conflicting with the functionality.

    If the issue persists. Please provide me with a demo user detail on your site so that I can check.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: hiding comments #29443

    Hello Rav,

    I have look into it and found that BuddyPress on single user profile activity tab override the “display_comments” value based on the scope. Please try the following code it will not display comments on User personal activity tab.

    
    // this one is working for member's activity should i post this code.
    add_filter( 'bp_activity_set_just-me_scope_args', function ( $scope_args, $r ) {
    
    	if ( isset( $scope_args['override'], $scope_args['override']['display_comments'] ) ) {
    		$scope_args['override']['display_comments'] = false;
    	}
    
    	return $scope_args;
    }, 10, 2 );
    
    

    Please let me know if it works or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: hiding comments #29439

    Hello rav,

    Thank you for the acknowledgement. It seems you have some modification. I will look into it and will update you with the code.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Branded Login Plugin – Can't get it to work #29438

    Hello Justin,

    Sorry for the inconvenience. I am looking into it and will update you soon.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Blog Categories for Groups – embedded media #29424

    Hello Brian,

    Thank you for posting. I have followed your test case by creating a new post and embedded a youtube video using ‘Add Media’ button and it is working form me. Please try to disable other plugin and switch to the default theme and give it a shot. There might be chances that any plugin or theme working with the content filter. Please let me know

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: hiding comments #29423

    Hello Rav,

    Thank you for the acknowledgement. Please let me know in which file you place this code. Also, which activity page like Activity directory, Member’s activity page or Group’s activity page you are trying to disable comment.

    Please share the code you are using.

    Regards
    Ravi

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

    Hello Pianohous,

    Sorry for the inconvenience. You are getting this notice because of plugin unable to find “FFmpeg” package on your server. Please let me know what kind of web hosting you are on. Is it shared or individual or you are testing with a local server. Please try the following command if you have access to the terminal

    
    which ffmpeg 2>/dev/null
    
    

    We use this command to check the existence of the FFmpeg. Please let me know what you get.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Branded Login Plugin – Can't get it to work #29412

    Hello Justin,

    Sorry for the inconvenience. I have checked the screenshot you have mentioned. You need to assign login page in the settings. As we use these settings to injecting our various form into these pages. Also “wp-login.php” will redirect to page set as login page.

    Please give it a shot and let me know if it works or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: hiding comments #29411

    Hello Rav,

    Thank you for posting. There are other better ways to hide activity comments in the activity stream.
    BuddyPress offers “display_comments” feature to hide activity comments. Please check the following example which will hide comments on activity directory page.

    
    add_action( 'bp_after_has_activities_parse_args', function ( $r ) {
    
    	if ( ! bp_is_activity_directory() ) {
    		return $r;
    	}
    
    	$r['display_comments'] = false;
    
    	return $r;
    } );
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Light Gallery missing arrow icons #29383

    Hello Shannon,

    Thank you for acknowledgement. You can find fonts under “assets/fonts” of plugin directory. Please check

    Regards
    Ravi