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: How can I allow users to delete there own Post #32317

    Hi Adeala,
    Is it about activity update? If yes, It is already allowed by BuddyPress.

    if it is about something else, Please do let me know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Buddyblog fork questions : custom post type #32316

    Hi Bruno,
    I had a look and the issue was as expected.

    The CPTUI registers post type on ‘init’ action with 10 priority while the bp_setup_nav is also called on the same but prior to CPTUI’s call.

    Due to this, The custom post types were not available when registering user nav. I changed the hook to init with lower priority for registering nav and it is working. I have updated it on your site too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Private account #32312

    Hi Ankit,
    Thank you for the patience.

    The plugin is working when following private accounts. I made a profile private and followed them from the members directory. They got the notification.

    If you are referring to making button available on the profile page, sorry, that is beyond the scope of this plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: User activity view count #32311

    Hi Daniel,
    Thank you for the question.

    Currently, It is not possible to reliably detect number of activities viewed. An activity can be viewed inside the stream while it may be viewed by its own permalink page.

    Counting inside the stream is not straight forward and that’s why I am unable to suggest any code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: BuddyPress Post Tags Dropdown #32310

    Hi Steven,
    Thank you for the question.

    is it about BuddyPress activity posting or blog post?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: MediaPress Gallery #32304

    Hi Chelle,
    Thank you for the question.

    Currently, we are unable to support the tiled gallery. The reason is all image sin a MediaPress gallery have same size. To support tiled gallery, you need images of variable size.

    I assume you are using shortcode to pull the galleries list. That seems the best way to do it currently.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Amir,
    Thank you for confirming.

    I hope that it continues to work as expected.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Amy,
    Thank you for the reply.
    We have received your email and will be replying there.

    Marking it resolved here.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Karen,
    I am not sure what you are doing but putting this line in bp-custom.php

    
    <?php
    
    define( 'BP_BUDDYBLOG_SLUG', 'blog' );
    
    

    Is working for me. Just tested again.

    Please make sure the file is named “bp-custom.php” and not “bp-custom.php.txt”.

    I do not use Windows but it seems if you use the file name in quotes, eg

    
    "bp-custom.php"
    

    The notepad will not save it as text and should work.

    Regardds
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: oEmbed parameters for performance? #32299

    Hi Tony,
    Thank you for checking back.

    I have explored it now. It is not feasible to cache properly with current BuddyPress setup.
    In order to use the cache we need the ability to store result and delete/update when a new value is entered.

    Currently, BuddyPress only provides the value reliably(url). In teh display callback, even the user id is optional and not always available. We need the user, field id and value to do the caching reliably.

    Another strategy will be to hash the url and create a transient based on this hashed url. The problem with this approach is when a value is updated, we will not be able to clear old value as the key changes.

    I am unable to add this solution in the plugin. I can certainly add a filter to allow you load the content from the remote site or a cached store using the second strategy(you will need to implement your own caching strategy). Let me know if it works for you?

    Regards
    Brajesh