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: 25347
    Brajesh Singh on in reply to: Mediapress support for 3gp video files #6844

    Hi George,
    You are right. The 3gp files are not playable by the browser by default and that’s why. MediaPress handle adding, uploading, deleting etc. The playing is delegated to WordPress and uses MediaElement.js player.

    It will be possible in future when we provide a plugin for conversion to a different media format. Though, that will not work on any shared server.

    Hope that clarifies.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347

    Hi Chris,
    I will suggest looking at
    bp_legacy_theme_hide_comments in your buddypress.js. There you can set the limit. Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: [Resolved] Personal not linking to personal #6840

    Thank you. I am glad, it is fixed now.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: Problem with member type #6839
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: BuddyPress Limit User Activity plugin #6838

    Hi Poofy,
    Thank you for asking.

    1. Yes,
    2. No
    3. No, for number of updates, you can do it via filter. For words, there is no option
    4. Again, using filter, you can do that.

    Yes, there are option for settings up limit per minute(use minutes for hour, month etc).

    Hope that clarifies.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25347

    Hi Dave,
    as communicated on email, please delete the old theme and upload the new zip file.

    Due to holiday, our updater have been delayed but will be soon available and you won’t have to do it in future.

    Also, as a pecaution, you may take a backup of the customizer settings using the plugin

    https://wordpress.org/plugins/widget-importer-exporter/

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: Mediapress and Activity Reactions for Buddypress #6825

    Hi Joseph,
    I am sorry I could not test it on mobile device but on desktop, It seems working fine.

    There are many places to delete. Can you please put me a screenhot to show which delete button you are referring to.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: Display user role change in Activity stream #6821

    Hi Mitch,
    Please put this code in your bp-custom.php

    
    
    function buddydev_record_role_change_activity( $user_id, $role, $old_roles  ) {
    
    	$role = get_role( $role );
    	if ( ! $role ) {
    		return ;
    	}
    	//Brajesh has become Author
    	$action = sprintf( '%s has become %s', bp_core_get_user_displayname( $user_id ), $role->name );
    
    	xprofile_record_activity( array(
    		'user_id'   => $user_id,
    		'action'    => $action,
    		'content'   => '',
    		'type'      => 'role_changed'
    	) );
    
    }
    add_action( 'set_user_role', 'buddydev_record_role_change_activity', 10, 3 );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25347
    Brajesh Singh on in reply to: [Resolved] Personal not linking to personal #6820

    Hi Chris,
    Please put this in your bp-custom.php

    
    
    /**
     * Update the url of the "Activity->Personal" link in the adminbar
     */
    function buddydev_update_personal_activity_in_admin_bar() {
    	global $wp_admin_bar;
    
    	if ( ! is_user_logged_in() ) {
    		return ;
    	}
    
    	// Update personal activity Url for the logged in user
    	$wp_admin_bar->add_menu( array(
    		'parent'   => 'my-account-activity',
    		'id'       => 'my-account-activity-personal',
    		'href'      => bp_loggedin_user_domain() . bp_get_activity_slug() . '/personal/',
    	) );
    }
    add_action( 'bp_activity_setup_admin_bar', 'buddydev_update_personal_activity_in_admin_bar', 100 );
    
    

    Please do let me know if that works for you or not?

    Thank you
    Brajesh