Search Results for 'buddypress'
-
AuthorSearch Results
-
February 23, 2017 at 8:56 am #264075
In reply to: Random User when /Members is loaded?
danbp
ParticipantHi,
you need a child theme and a small code modification.
The code is explained here.
if ( bp_has_members( bp_ajax_querystring( 'members' ) ) )is to replace by something like (can be different)
if ( bp_has_members( 'type=random' ) )In a “buddypress” folder of your child theme, you add a copy of this file:
wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.phpWhat ever you modify in that file while now be interpreted by BuddyPress. The advantage of this method is that BP can be updated while your modification in the child will always be save and taken in account over the current version.
You can also search the forum for members-loop to get other information.
February 23, 2017 at 1:54 am #264071r-a-y
KeymasterDisable the “Site Tracking” component under “Settings > BuddyPress” in the WP admin dashboard. When you do this, blog posts and blog comments will not be recorded into the BP activity stream.
February 23, 2017 at 1:43 am #264070jeffm2008
ParticipantWhile we are at it, is there a way to disable my blog posts from automatically showing up as my buddypress activity posts? Thank you very much in advance.
February 23, 2017 at 12:03 am #264066In reply to: Buddypress Future Suggestons
r-a-y
Keymaster1,2,3,4,6 should be left to WordPress plugins as these are specific to WP.
7, 10 have been discussed as core options. It just takes time for developers and the team to finalize specs and to code as this is all done on a volunteer basis. 10 is hard because it relies on a ton of dependent code that hasn’t been written or finalized yet.
5 – There’s been some preliminary work on this. See https://github.com/buddypress/bp-types-ui.
9 – If you’re using WordPress multisite, this should be already available as a WordPress option under “Network Admin > Settings”. Otherwise, this plugin might work, but does the opposite. It restricts signup to email domains that you specify.
Notifications
2 should already be in core.
3 is a good request, but unreliable due to how the notifications data is stored. It would be easy to do for BP core notifications, but notifications generated by plugins could store the user ID differently, making this unreliable.
4 could be done via a custom template or via a small code snippet.February 22, 2017 at 11:08 pm #264064r-a-y
KeymasterIf the post contains an inappropriate word that you’ve set up in WP’s comment moderation settings, then BuddyPress also inherits these settings. This functionality was added in BP 2.6.0.
To disable this functionality from the Activity component, add the following to your theme’s
functions.phporwp-content/plugins/bp-custom.php:// Do not use WP's Comment Moderation with BP Activity component remove_action( 'bp_activity_before_save', 'bp_activity_check_moderation_keys', 2, 1 ); // Do not use WP's Comment Blacklist with BP Activity component remove_action( 'bp_activity_before_save', 'bp_activity_check_blacklist_keys', 2, 1 );February 22, 2017 at 7:16 pm #264054In reply to: [Resolved] Pages not working
danbp
ParticipantHi Jody,
BP pages should be empty, so it is normal you see only a title in the page preview. These pages are dynamic and completed by BP, depending the context. As site owner, you have nothing to add to them.
To get the page system to work correctly, you have to enable the permalinks. You can choose any option, except “by default”. Don’t forget to save your setting.
For more details, please read the documentation.
I visited your site, but was unable to access the member directory page or site activity page. Seems you require user to be logged in to access them… 🙁
February 22, 2017 at 6:11 pm #264052In reply to: whats-new-textarea – size
coolhunt
ParticipantBig thanks! its definitely got me to the right direction..
though… im a little nervous to make updates on Buddypress.js-im trying it out now on twenty seventeen
February 22, 2017 at 3:48 pm #264050In reply to: Can’t upload profile pictures
danbp
ParticipantWhen you are on frontend, your profile tab, you should see follwing menu items under the buddy nav bar:
View | Edit | Change Profile Photo | Change Cover Image
and the same items under your user menu (below Howdy), in the top right corner on the Toolbar, as submenu of the Profile item.
If it isn’t case, some common issues can be:
– you omitted to save your BP options
– you use a cache and see the site content from before BP installation
– there is a weird bug in a file
– your theme isn’t taylored for BuddyPress
– there is a conflict with another pluginWhat you could try:
– double check your settings
– clear the cache
– reload a fresh copy of BP via FTP
– test with a Twenty theme
– you have to debugNote also that you can only load ONE avatar or ONE cover image at a time and that you have definitely only one picture for each bundled with your account.
February 22, 2017 at 3:21 pm #264049In reply to: hide members from search results
johanna75
ParticipantI use the BP PROFILE SEARCH plugin (mandatory for members search form i think… because if Deactivate it search form deseapered)
and SuitePlugins – Advanced XProfile Fields for BuddyPressFebruary 22, 2017 at 1:47 pm #264047In reply to: hide members from search results
djsteveb
Participant@johanna75 – very interesting – I wonder if this happens with the other buddypress search plugins as well. I assume you are using the standard bp members search not one of the add on profile search plugins?
February 22, 2017 at 8:20 am #264035In reply to: Display activity of a specific group
aido141176
ParticipantHi danbp, thank you for your response. Unfortunately I’m not sure how I can get this to work.
Can you please show me a loop that will show all activity for say a group with ID 2. Or even with a slug, say ‘group_slug’.
Here is the loop I am using:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . "&primary_id=2" ) ) : ?> <?php while ( bp_activities() ) : bp_the_activity(); ?> <?php locate_template( array( 'buddypress/activity/entry.php' ), true, false ); ?> <?php endwhile; ?> <?php endif; ?>I tried both to incorporate your code into the activity loop but it didn’t work.
I want display this activty not on a buddypress page. I want it to go on homepage. I can already get the group ID I just want to be able to make a loop that displays the activity of a curtain groupusing the group ID.
If you could show me a whole complete loop that would work I would be really greatful.
Thanks
February 22, 2017 at 5:07 am #264033danbp
ParticipantYou have already asked for this in the past 2 weeks!
How to add a tab or content (like user’s post) on a profile is explained in many topics if you would take a little while to search the forum.You want to use a third party plugin, but we can’t help you for this as we are all volonteers here, who have enough to do with BuddyPress. It is to you to read the software documentation and built it in your site.
This topic is closed as duplicate. Conversation continues here.
February 22, 2017 at 4:54 am #264030In reply to: Display activity of a specific group
danbp
ParticipantHi,
you have to use a group_id and to ensure you’re in an appropriate loop (activity or group)
To get a group id, you can for ex. do:
// check for a group ID if( bp_has_groups() ) { // Grab current group ID bp_the_group(); $group_id = bp_get_group_ID(); } // apply our changes only to this group ID's // conditionnal action if ( $group_id == 22 OR $group_id == 8 ) {… and so on!
You may also use bp_parse_args, depending where you use your custom work. In other words, you can create a complete new activity loop on a distinct page template for only one group.
February 22, 2017 at 3:33 am #264025In reply to: spam registration
djsteveb
Participant@malaruban – did you search the forum for this? It’s answered like very month since the beginning I think..
everyone has different suggestions..
1 many suggest “wp spamshield”
2 I like “good question” plugin on one site, but use “buddypress humanity” on another..
one I’ve considered replacing those wit his “user registration aid”3 I also use ip geo block – biggest help on most sites.
4 strongly suggest getting the “shield” firewall plugin and going into lockdown menu and disabling xmlrpc and rest api – but your situation may vary.
I use all four plus more on various sites (just one of them from step 2)
February 22, 2017 at 3:25 am #264024In reply to: Redirect user role to own profile at login
djsteveb
ParticipantI use https://wordpress.org/plugins/buddypress-login-redirect/ – and it does exactly that.
February 22, 2017 at 3:22 am #264023In reply to: Page title – group name instead of topic title
djsteveb
Participantpage titles for member profile pages and group pages are not easy to change up – I posted some info I got a while back on this, but before I go digging for that info, I wonder if you really mean groups like buddypress groups.. since your url fragment there has “forum” in it – you may be refering to page title for the forums which I think is more of a bbpress issue (?) –
February 21, 2017 at 10:49 pm #264016In reply to: Add Profile Link to Menu?
itskater91
ParticipantThanks! I actually figured it out with the BuddyPress plugin. Another plugin was blocking me from adding the BuddyPress Login to the widgets once that was allowed it fixed itself.
February 21, 2017 at 9:47 pm #264014In reply to: Warning: Creating default object from empty value in
jenfilgate
ParticipantI had to add this code to my functions.php file to get rid of it.
/* Remove errors if any */
error_reporting(E_ERROR | E_PARSE);
/* End remove Errors */It just removes the warning, but doesn’t solve the problem that causes it. I wasn’t able to find a resolution to that and may need for my plugins to update in order to solve it. Mine was being caused by a conflict between BuddyPress and W3 Total Cache.
February 21, 2017 at 9:25 pm #264013In reply to: BuddyPress Login Page
clf885
ParticipantI didn’t know that BuddyPress didn’t have a login page so my bad. What other details do I need to include?
February 21, 2017 at 9:00 pm #264012In reply to: BuddyPress Login Page
danbp
ParticipantBuddyPress doesn’t use “a login page”. If you have a radio button for the “remember me” option, it is certainly because you’re using a third party plugin or theme or widget.
But you don’t give any detail about your config, so it is just impossible to tell you more!
February 21, 2017 at 8:51 pm #264011In reply to: Add Profile Link to Menu?
danbp
ParticipantHi,
please try to search a little before asking such basic question! Ie, you would have found this one:
https://buddypress.org/support/topic/create-dynamic-user-links-to-end-users-wallprofile-etc/
February 21, 2017 at 6:12 pm #264007In reply to: Missing ‘Join Group’ button?
danbp
ParticipantCan you give an example of what you tried and tell us where you did that change ?
Also, you should test BuddyPress with one of WP’s default Twenty theme before activating any other theme.And more generally, giving some details can help too.
February 21, 2017 at 6:07 pm #264006In reply to: whats-new-textarea – size
danbp
ParticipantThis field is visible by default.

If not, so the problem might be with your theme.
For other what’s new form questions, search the forum.Some answers here:
https://buddypress.org/support/topic/how-do-i-remove-textarea-resize-without-editing-the-js-script/February 21, 2017 at 5:11 pm #264002In reply to: Remove profile pic by code
danbp
ParticipantSimply by not using code!
Remove the call to user avatar from the templates and you’re probably done. 😉
Or if you want to code, see here and search for bp_member_avatar.
February 21, 2017 at 4:57 pm #263999In reply to: How do I hide dashboard?
danbp
ParticipantHi,
sorry but this is not related to BuddyPress.
Dashboard access is part of WordPress and the way it is displayed on your screensht indicate that it is also theme dependant somehow.
You can hide any menu item from the WP toolbar by following these instructionsor you can chosse to active/deactive the toolbar option in BP settings or use a plugin to limit dashboard access.
-
AuthorSearch Results