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: 25357
    Brajesh Singh on in reply to: BBPress notifications in BuddyPress profile #29874

    Hi Scott,
    Clearing of individual notifications are handled by the plugin generating them. We simply list them.

    In this case, It is bbPress which handles clearing the notification not us. It seems they are not handling it.

    Please report it on bbPress trac.

    Regards
    Brajesh

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

    Hi,
    I am sorry, There is no such bug in the plugin.

    If you need to change the subject, you can do so in the Dashboard->Emails section. This has been the behaviour since last 4-5 release(And since the very first time you used this plugin).

    We haven’t modified anything on that. When you activate the plugin on a new site, It creates an email entry which you can modify as you please.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25357

    Hi ,
    I am sorry for the inconvenience

    we no longer consider profile meta as authoritative value.

    With the new update, The actual value is calculated from visitors table and cached in the meta.

    Is there any chance you manually changed the counts in meta earlier? Otherwise, this change will have no effect.

    Also, if you need to revert, Please scroll to the bottom of the plugin page and download older version.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25357
    Brajesh Singh on in reply to: BuddyPress Moderation #29859
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25357

    Hi Clea,
    Hope you are doing well.

    Thank you for the patience.

    I have added the login redirection in 1.5.1. Please upgrade and use it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25357

    Hi Peter,

    I have added the login redirection in 1.5.1. Please upgrade and use it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25357
    Brajesh Singh on in reply to: [Resolved] Documents Button? #29855

    Hi James,
    Welcome to BuddyDev.

    Please make sure you have enabled it under “mediaPress->Settings->BuddyPress”, “MediaPress->Settings->Members” and “MediaPress->Settings->Groups” as applicable.

    That will make it enabled.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25357

    Hi,
    We will suggest to hire someone to troubleshoot it for you. We do not provide support for MPP Local transcoder as a lot depends on server and not on the code.

    The code part is only responsible for executing ffmpeg binary.

    Some of the issues that might cause it:-
    – Can your www-data(or user under which web server runs) is capable of running the ffmpeg process?
    – If you are on ubuntu, Please make sure that FFMPEG was not installed via SNAp. snap installed packages are restricted. I will suggest uninstalling and then installing via apt

    Please check the last 2, if that does not solve your issue, You will need someone to treoubleshoot it on your server.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25357

    Hi Nestor,
    You are welcome.

    I am not sure what “Select activities” is. Also, I do not use BP Edit Activity, so I regret my inability to assit with these 2.

    I will help with the comments though.

    Please look for a section

    
    			jq.post( ajaxurl, ajaxdata, function(response) {
    				target.removeClass('loading');
    				content.removeClass('loading');
    
    				/* Check for errors and append if found. */
    				if ( response[0] + response[1] === '-1' ) {
    					form.append( jq( response.substr( 2, response.length ) ).hide().fadeIn( 200 ) );
    				} else {
    					var activity_comments = form.parent();
    					form.fadeOut( 200, function() {
    						if ( 0 === activity_comments.children('ul').length ) {
    							if ( activity_comments.hasClass('activity-comments') ) {
    								activity_comments.prepend('<ul></ul>');
    							} else {
    								activity_comments.append('<ul></ul>');
    							}
    						}
    
    						/* Preceding whitespace breaks output with jQuery 1.9.0 */
    						var the_comment = jq.trim( response );
    
    						activity_comments.children('ul').append( jq( the_comment ).hide().fadeIn( 200 ) );
    						form.children('textarea').val('');
    						activity_comments.parent().addClass('has-comments');
    					} );
    					jq( '#' + form.attr('id') + ' textarea').val('');
    
    					/* Increase the "Reply (X)" button count */
    					new_count = Number( jq('#activity-' + form_id[2] + ' a.acomment-reply span').html() ) + 1;
    					jq('#activity-' + form_id[2] + ' a.acomment-reply span').html( new_count );
    
    					// Increment the 'Show all x comments' string, if present
    					show_all_a = activity_comments.parents('.activity-comments').find('.show-all a');
    					if ( show_all_a ) {
    						show_all_a.html( BP_DTheme.show_x_comments.replace( '%d', new_count ) );
    					}
    				}
    
    				jq(target).prop('disabled', false);
    				jq(content).prop('disabled', false);
    			});
    

    It starts around line 625

    and you can add that line just below “jq(content).prop(‘disabled’, false);” like

    
    
    jq(content).prop('disabled', false);
    MathJax.typeset();
    

    Regards
    Brajesh