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: 25400
    Brajesh Singh on in reply to: [Resolved] buddypress list all groups #9348

    You are welcome 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi Matthew,
    I am not sure if the plugin had any issue or not as I did not test the original version. I have uploaded a new version of the plugin which I have tested with WordPress Multisite 4.7.5 and it working fine.

    https://buddydev.com/plugins/join-blog-widget/

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

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: [Resolved] Buddypress menu dashboard #9344

    Please let me know if you still need assistance and can provide the screenshot or I will close this topic in 24 hours if there is no new response.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Thank you. It’s good to know 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi Matthew,
    Thank you.

    I will suggest looking into the plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single directory.

    Specially home.php(how each component is loaded). Looking at the home.php will give you all the idea you need for customizing.

    PS: You can override all the templates in buddypress by copying the file to your theme( and ignoring the bp-templates/bp-legacy/ part).

    So, if you want to override /buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php you will copy it to your theme/buddypress/members/members-loop.php

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: Xprofile field problem or BUG #9340

    Yes, I can confirm it now too.
    A quick fix(just a workable solution, not the best) is to mark the field with the zero value as default. That does make it work.

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: [Resolved] buddypress list all groups #9339

    Hi Valle,
    Please take a look at the groups-loop.php. In that file you will see bp_has_groups(), you can pass per_page and max to control how many.

    You can copy paste the loop and its content from this file to list the groups.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    Hi Giulietta,

    Please put this code in your bp-custom.php or your functions.php

    
    
    /**
     * Ask BuddyPress to check and load newest activity on Community Activity page.
     *
     * @param bool $do
     *
     * @return bool
     */
    function buddydev_do_heartbeat_on_community_activity( $do ) {
    	// is it our page?
    	if ( bp_is_user_activity() && bp_is_current_action( 'all-activity' ) ) {
    		$do = true;
    	}
    
    	return $do;
    }
    add_filter( 'bp_activity_do_heartbeat', 'buddydev_do_heartbeat_on_community_activity' );
    
    

    That will make it work.

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25400

    You are welcome 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25400
    Brajesh Singh on in reply to: Xprofile field problem or BUG #9333

    Hi Nim,
    It was a known bug earlier. I am not sure if it is fixed in current version though.