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: 25358
    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: 25358

    Hi Amir,
    Thank you for confirming.

    I hope that it continues to work as expected.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    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: 25358

    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: 25358
    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Well, it seems the issue is not fixed by them.

    I will need some time before I can look at their code. I will find some time this weekend to check it and get back to you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Oops,
    Please delete it asap.

    It seems someone provide you a pirated copy with backdoors

    https://blog.sucuri.net/2020/07/pirated-wordpress-plugins-bundled-with-backdoors.html

    Please delete it asap otherwise it will harm your site.

    I will also suggest contacting the person who provided you with this plugin and to convey that it has a backdoor.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Hi Amy,
    Thank you for the reply.

    I am sorry, It is not our plugin.

    we don’t have any file named as

    
    rms-script-mu-plugin.php
    
    or
    rms-script-ini.php
    
    

    It is most probably a similarly named plugin by someone else.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Hi Tosin,
    I had a look at their reply.

    It seems the assumption might be correct.

    1. try registering with a new account and see if it still giving the same issue
    2. If you want to update for existing users, Please use phpmyadmin and select the usermeta table. Then search for ‘_has_complete_profile’. Remove these entries and it will work.

    PS:- If you are not familiar with DB update, Please feel free to share the details and I will update it for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25358

    Hi,
    Avoid using ‘after_setup_theme’. The current user is not set at this hook, so it should not be used.

    Regards
    Brajesh