Replies
You are welcome 🙂
- Brajesh Singh on May 29, 2017 at 3:39 pm in reply to: [Resolved] Critical bug with join blog widget 1.0.1 #9347
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?
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- Brajesh Singh on May 29, 2017 at 12:48 pm in reply to: [Resolved] BuddyPress Xprofile Member Type Field issue #9342
Thank you. It’s good to know 🙂
- Brajesh Singh on May 29, 2017 at 12:47 pm in reply to: [Resolved] Customising the member profile – are there any good tutorials. #9341
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 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.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.
- Brajesh Singh on May 29, 2017 at 12:01 pm in reply to: [Resolved] load newest button with BP CommunityActivity on profile #9338
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 - Brajesh Singh on May 29, 2017 at 10:13 am in reply to: [Resolved] How to hide the sidebar properly in member profile view #9334
You are welcome 🙂
Hi Nim,
It was a known bug earlier. I am not sure if it is fixed in current version though.