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: 25472
    Brajesh Singh on in reply to: [Resolved] .Mov Format Video not playing #15985

    Hi Beuza,
    I am sorry I had posted the message privately and since you were not the topic creator, you could not see it.

    We released a major update to MediaPress last week for adding external urls.

    The next major goal is FFMPEG. I will need another 10-15 days(atleast) for the same. I am putting all my efforts on this as once it is completed, we can work on the next generation of MediaPress(migrating current schema etc).

    Please allow me around 15 days and please bear with me if it take a little more. I am on it and will have it as the next thing for sure.

    Please do know that it is not difficult to put an FFMPEG solution that does it, My goal is to work on a generic solution(independent from MediaPress) which scales and can be used for any other purpose.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] BFM Issue with pagination #15984

    Hi Nabeel,
    I am sorry but we won’t be able to include the fix in the plugin. Since it only happens on members directory, We can think of as a regression.

    I will explain why.

    The problem:- We use bp_has_members() the same loop that BuddyPress uses on member directory. BuddyPress does not have a proper way to pass the pagination arguments. It uses the “page_arg” variable to keep the name of the pagination query string variable name. That is a super bad choice as it limits the customization.

    If we change the ‘page_arg’ in our loop, We will be able to work with BuddyPress’s loop but that will break pagination for us on our shortcode pages.

    In your case, Please open bp-featured-members/templates/members-loop-list and members-loop-slider

    You will see a line like this

    
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . '&scope=featured') ) : ?>
    

    Please change it to

    
    
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . '&scope=featured&page_arg=somethingrandom') ) : ?>
    

    That should fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Required fields #15977

    Hi Farhad,
    Please allow me to test it later today and post back to you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Mentions in Buddypress Activity Shortcode #15976

    Hi Lars,
    Thank you for asking.

    Please see this
    https://buddydev.com/enabling-buddypress-mention-auto-suggestions-on-any-page/

    You will need to manually enable the js on certain pages to make it work.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Required fields #15972

    Hi Farhad,
    I checked it.

    Most probably your theme does not include a global template notice action.

    Please open ‘buddypress-user-contact-form/templates/buddypress/members/single/bpucf-form.php’ and put this line after the php tag

    
    
    do_action( 'template_notices' );
    
    

    That will show the notices.

    Regards
    Brajesh
    That will do it.

    • This reply was modified 8 years, 1 month ago by Brajesh Singh. Reason: should be bp_ not bbp_
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] Required fields #15971

    Hi Farhad,
    Thank you for letting me know. Please allow me to check and get back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25472

    Hi Audiomonk,
    Most probably the request is taking time to complete. I will suggest investigating the request in the chrome developers toolbar.

    If the server response shows too much delay, please install a plugin like query monitor and try to see if you see anything abnormal.

    Enabling caching, specially persistent object cache using reds can improve the performance in some of the cases.

  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: [Resolved] .Mov Format Video not playing #15969
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25472
    Brajesh Singh on in reply to: Error uploading video #15968

    Hi Oscar,
    Thank you for the details.

    In order to change the size you will need to update settings for

    post_max_size
    upload_max_filesize

    These changes will go to your php.ini . If you are on cpanel, you can do it from php.ini settings utility.

    To apply the changes(If you have made it in your main php.ini file), you will need to restart the web server(apachare or nginx or any other ).

    Regards
    Brajesh

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