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: 25485
    Brajesh Singh on in reply to: icon in edit plugin not showing #30563
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: icon in edit plugin not showing #30560

    Hi Kathy,
    Thank you for the patience.

    I have updated both the plugins to use icon from the BuddyBoss theme.

    Please upgrade and refresh the page to make sure the icon appears.

    Please let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: icon in edit plugin not showing #30559

    Hi Kathy,
    I see the issue. BuddyBoss has switched activity icons from dashicon to bb-icon in the last update and that’s why the issue is there.

    I am releasing an update for these 2 plugins in 1-2 hours to fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: icon in edit plugin not showing #30558

    Hi Kathy,
    I am sorry for the inconvenience.

    Have you had any recent updates of some plugin or theme? Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Multiple BP networks on multisite #30551

    Hi Peter,
    1. yes, that document is valid and I am assuming you have already enabled it on secondary blog.

    Currently, BuddyPress does not give us any way ti limit recording from certain blogs, It is all or none.

    If you know the blog ids to be recorded, It can re restricted by using a filter ‘bp_blogs_is_blog_trackable’

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Question about font awesome flag #30550
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Buddypress disabling system #30548

    Hi Peter,
    Thank you for the reply.

    I am glad you found the issue. The above suggested code should have printed the error. if they did not, most probably your host puts extra customizations.

    From the above code, All I can guess is there was some code in your mu.php which was injecting something related to BuddyPress in the head tags of the site.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Mediapress Bulk Uploads #30547

    Hi Jik,
    I have updated the post. The mention was for “Gallery” upload and not activity.

    In case of upload from gallery, we do not keep a record of all the files uploaded client side and we do not inform server that consider these n files as single unit.
    

    It is easily doable and you do not need to create any activity. There are functions to do that.
    Please search for wp_ajax_mpp_publish_gallery_media in the code to see how it happens.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Auto join groeps Auto List error #30538

    Hi Peter,
    Thank you.

    We can add it easily, the problem is setting expectations. If we get a few more request on the same line, we will add it.

    The problem with this approach is site admins will ask for some way to add data on dashboard registration and so on. That’s why we have limited to front end.

    Regards
    BRajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Mediapress Bulk Uploads #30537

    Hi Nik,
    Thank you.

    Here are a few things to know:-

    1. Individual file uploads are only an atomic action for the server. They don’t know if someone uploaded only 1 file or 5 files together.
    For server, they do not understand what is a bulk action.

    To achieve a feeling of bulk upload, we store the uploaded file details on client side(in activity) and then when activity is posted, we use these file ids with the newly created update to check if there was any file uploaded and how many was there.
    In other words, client re-sends the list of files uploaded earlier and now server knows it was bulk.

    In case of upload from gallery, we do not keep a record of all the files uploaded client side and we do not inform server that consider these n files as single unit.

    We can do it by sending a new request at the end of the uploads to inform server. It is not very difficult to achieve .
    Currently, my team lacks the bandwidth to have this feature added in the plugin.

    I hope it clarifies.

    Regards
    Brajesh

    • This reply was modified 6 years, 2 months ago by Brajesh Singh. Reason: updated