BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    Hi Abhishek,
    Are you referring to BoddyBoss group?

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    Hi Niculae,
    Yes, we will be making a release this week for sure.

    @ Tosin,
    We are unable tp provide you assistance with any custom code until the plugin is available as public release. Using custom codes at this state has been very limiting as it forces us to not change our API.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: Buddyblog Pro – Edit custom fields #46127

    Hi Christian,
    Thank you for the question.

    At the moment, the interface does not allow editing of a field settings. The simple way to update custom field setting is to delete the field and add it with the same key.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: buddyblog medium editor not displaying embeds #46126

    Hi Tosin,
    We will have an update by day end today(24th). I was away yesterday and could not work on the fix.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: [Resolved] Posting in groups #46113

    Hi Nik,
    Thank you.
    It’s ready for beta. Our team will be away from our normal places on 23rd(we will be still looking after the forums). We will be back in the late evening 23rd and will release it around afternoon(EST) on 24th.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211

    Hi Michael,
    Thank you for the question.

    In BuddyPress Template packs, the last active time is hardcoded(using template tag) in the members loop.

    BuddyPress does have a template tag for showing the registered since time.

    
    <?php bp_member_registered();?>
    
    

    But you will need to edit your members-loop.php(override it in your theme/child theme) and put this code conditionally.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: List Online Members of Opposite Gender #46111

    Hi Leo,
    You may check how to create shortcode here.

    https://developer.wordpress.org/plugins/shortcodes/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: BuddyBlog Pro – Use preexisting Custom Fields #46110

    Hi Christian,
    Thank you for the question.

    The answer depends on which field types you are using and how that plugin stores data. since BuddyBlog as well as that plugin stores data in post meta, it is always a possibility to map them if we have similar field types.

    We don’t have access to the Toolset plugin, so we lack the ability to check. Does that plugin have a free version available somewhere to allow us check it?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: SERVER SETUP – QUESTION #46109

    Hi Tosin,
    Thank you for the question.

    We are using KnownHost. Please note that we have very limited number of external plugins and we stick with the basics.
    Also, since not too many users are online simultaneously, BuddyDev’s hosting requirement may not be the right way to plan for a community driven social site.

    As Henk said, you should compare with some community sites.

    @ Henk Harms

    I had a look at your site and it has reasons to be slow. You are using WooCommerce, Tutor LMS, Elementor and a couple more larger plugins which are memory/resource hungry.

    Also, you are using Youzify which is known for adding features at the cost of speed.

    On your home page around 110 http request are happening with around 5MB of data load. That is going to cause delay.

    As far as I can see both Tosin’s and your server configurations are fine as long as you make a balance between the plugins used, added some asset bundle/minifier and some caching solutions and considered continuous monitoring for load and keep repeating the process.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25211
    Brajesh Singh on in reply to: XProfile Field Shortcode #46106

    Hi Leo,
    Welcome to BuddyDev support forums.
    1. you may install our shortcode plugin from here
    https://github.com/buddydev/bp-shortcodes

    and use the shortcode

    
    
    [bpsc-profile-data field="field Name or ID" context="display"]
    

    For a list of available otpions please see
    https://github.com/buddydev/bp-shortcodes/blob/master/src/shortcodes/profile/class-profile-data-shortcodes.php#L65

    It has the options to allow you wrap values of multi valued fields.
    You can use either Field Name or id in the field option.

    You can see the field id by visiting Dashboard->Users->profile Fields and editing a field. it is shown in the url.

    Regards
    Brajesh