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

    Hi James,
    Thank you for the question.

    Yes, you can do that with Profile Visibility Manager.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: [Resolved] Auto join groups – cron job #40059

    Hi Darshan,
    It seems you are referring to the custom code section. Please allow me to check and get back to you by tomorrow.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: [Resolved] BuddyPress Xprofile – Search URLs #40058

    Hi James,
    The search functionality is not offered by Xprofile Custom Field Types plugin.

    It is offered by the BuddyBoss platform and is same for the native fields/custom fields. If you are able to use the link for native fields(such as Web etc), you can apply the same for custom field types.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Branded login and BP Rewrites #40056

    Hi Tosin,
    The change has no effect on Branded login. It is currently allowing you to edit the slug part after the members page. Branded login has no page for tat.

    You can edit branded login slug from your pages screen. Slugs have no special meaning in the case of branded login plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Hi James,
    Thank you for confirming. I am glad it worked.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: [Resolved] BuddyPress Xprofile – Search URLs #40054

    Hi James,
    Thank you for letting me know.

    I will suggest contacting BuddyBoss support as we do not offer any support for BuddyBoss’s product here.
    We do provide support for our plugin’s compatibility with them.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: [Resolved] Auto join groups – cron job #40048

    Hi Darshan,
    The plugin works fine with the Hidden Groups. If you are using the plugin, are you having any issue adding the hidden group to the list?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: [Resolved] changing css tags #40047

    Hi David,
    That’s expected as you renamed the css files but did not load. You will need to load the renamed files too.

    Please take a look at wp_enqueue_script top see how can you load the assets.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Hi,
    I am not suggesting the translation. You will be using the localization feature of WordPress. You do not need any extra plugin to do it. You can use poedit software for this and your changes will be retained on your upgrade too.

    The loco translate only helps with localization(generation of the localized file).

    For any of the above methods, all you need to do is create a new localization file for your site’s languages and use your texts for labels you want to change.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Hi James,
    Thank you for the question.

    Since BuddyBoss theme and the BuddyPress have similar loop, Here is a code that works for both.

    
     add_filter( 'bp_after_has_members_parse_args', function ( $args ){
    
         if( ! bp_is_members_directory() ) {
             return $args;
         }
         $args['per_page'] = 20;
         return $args;
     });
    
    

    Regards
    Brajesh