Search Results for 'buddypress'
-
AuthorSearch Results
-
November 25, 2015 at 11:55 am #247168
Henry Wright
ModeratorHow do I remove buddyPress completely from my wordpress and restore everything as pre-installation of BuddyPress?
You can just deactivate the plugin and remove the “Register” and “Activate” pages you created at Dashboard > Pages.
November 25, 2015 at 9:58 am #247167lifeisgood134
ParticipantHi, Any update on this? ๐
How do I remove buddyPress completely from my wordpress and restore everything as pre-installation of BuddyPress?
November 25, 2015 at 9:13 am #247166In reply to: Cannot activate Buddypress
doncobb
ParticipantI posted three times yesterday, and none of my posts showed up in the forum. Today an Administrator contacted me and said my posts got caught up in the cache. But then, someone deleted two of my posts and changed the header of the only existing post to “How to install WordPress”, which isn’t at ALL what my post said. It said “How to install Buddypress”.
Now, I’m reposting again because I cannot change the header BACK, on my own post, and suddenly it activates correctly. Now, I can’t delete THIS post for some reason. No “Delete” link anywhere, so it’s a useless, resolved post that I don’t want any answers to. FYI…
November 25, 2015 at 1:21 am #247164In reply to: Buddypress and Calypso?
Henry Wright
Moderator@ronia BuddyPress uses the admin area too ๐
November 24, 2015 at 10:58 pm #247159In reply to: Strange links in Buddypress profiles
Henry Wright
ModeratorHi @koreancandy
Looking at the Name and Location profile fields, they’re also linked? To remove these links, check out the bp-custom.php article.
November 24, 2015 at 9:06 pm #247157In reply to: php fatal error $message->send()
Henry Wright
ModeratorIf I have no recipients I get a php error.
Are you sure the problem is you have no recipients?
Once
messages_control()
returns, the following code is executed immediately:if ( empty( $this->recipients ) ) return false;
This will ensure the message isn’t sent if you have no recipients.
November 24, 2015 at 7:52 pm #247152In reply to: Comments nor Posts in personal activity shows
r-a-y
KeymasterYou need to turn on Site Tracking.
Go to the WP admin dashboard and navigate to “Settings > BuddyPress > Components”.
Next, activate the “Site Tracking” component and test the filter. I believe the filters only take effect when posts are saved/edited, so you might not see any posts or comments recorded in the activity stream.
November 24, 2015 at 7:50 pm #247151In reply to: Error on install and when trying to repair..??
r-a-y
KeymasterYou can ignore this message if you’re using BuddyPress on a production site.
To turn off debugging notices on production, set
WP_DEBUG
to false inwp-config.php
:
https://codex.wordpress.org/WP_DEBUGThis is a notice caused by a plugin that is initializing user info too early. If you want to find out which plugin is causing this, deactivate all your plugins and only activate BuddyPress. Next, activate your plugins one-by-one until you find the culprit.
November 24, 2015 at 7:25 pm #247148In reply to: Simply display friends of member
November 24, 2015 at 1:35 pm #247142In reply to: Buddypress and Calypso?
Henry Wright
ModeratorIt’s likely that nobody has even thought about this yet because Calypso is so new. Check out these instructions if you want to install it: https://github.com/Automattic/wp-calypso/blob/master/docs/install.md
Also, there are various projects in progress for BuddyPress. Here’s one example:
November 24, 2015 at 1:33 pm #247140In reply to: Buddypress and Calypso?
Henry Wright
ModeratorIt’s likely that nobody has even thought about this yet because Calypso is so new. Check out these instructions if you want to install it: https://github.com/Automattic/wp-calypso/blob/master/docs/install.md
Also, there are various projects in progress for BuddyPress. Here’s one example:
November 23, 2015 at 10:07 pm #247128shanebp
ModeratorIn order to get a response to your question, please provide specifics – after reading this:
https://buddypress.org/support/topic/when-asking-for-support-2/November 23, 2015 at 9:07 pm #247122In reply to: Adding a new component to BuddyPress
Henry Wright
ModeratorThese requirements are very custom so I doubt there will be a plugin available. My advice is to take a look through the core project code to familiarise yourself with how BuddyPress works. There’s also a BuddyPress Skeleton Component you can use (check out the comments) to learn how to create a new component should you need one.
November 23, 2015 at 4:20 pm #247115In reply to: want to add more fields to “Post Update” form
Henry Wright
ModeratorYou should look at bp-templates/bp-legacy/buddypress/activity/post-form.php, making changes if necessary using the BuddyPress Template Hierarchy article as a guide.
November 23, 2015 at 2:07 pm #247111In reply to: Private Message Thread – Reply-Box on Top
shanebp
ModeratorYou shouldn’t change core files.
You should be able to make your changes via template overloads.
Copy this file
bp-templates\bp-legacy\buddypress\members\single\messages\single.php
to your child theme so that the dir structure looks like this:
your-theme\buddypress\members\single\messages\single.php
Then in single.php, change
if ( bp_thread_has_messages() ) :
to<?php $args = array( 'order' => 'DESC' ); if ( bp_thread_has_messages( $args ) ) : ?>
To change the location of the reply box, adjust the html in that same template overload.
November 23, 2015 at 10:28 am #247109In reply to: bp_get_member_user_id() returns false
Henry Wright
ModeratorThe likely reason why
bp_get_member_user_id()
is returningNULL
is you are using it outside the members loop. See the Playing with the userโs ID in different contexts article for info on how to get the member’s ID in the various contexts that exist within BP.November 23, 2015 at 1:00 am #247103paragbhagwat
ParticipantB@henrywright below is the link to the posting above
https://buddypress.org/support/topic/groups_member_before_save-messages-not-showwing-up/
November 22, 2015 at 9:09 pm #247094In reply to: Disable messages in Activity Stream
Henry Wright
ModeratorI have no idea if this plugin still functions because it was last updated ~4 years ago, but check out BuddyPress Block Activity Stream Types.
November 22, 2015 at 3:28 pm #247086In reply to: No BuddyPress Menu on Sub-Sites (MultiSite)
danbp
ParticipantIs explained here:
November 22, 2015 at 12:23 pm #247084dishahsharma
ParticipantYou must check out BuddyPress Member Types.
BuddyPress Member Types lets you create and manage member types without having to code. You can also allow users to choose their Member type while signing up and also through their profile options.
November 22, 2015 at 7:54 am #247083In reply to: [Resolved] cannot change profile photo
rebekahmeuir
Participant@bgrated the new version of buddypress solved my issues
November 21, 2015 at 6:22 pm #247070In reply to: Order by Alphabetical for groups
shanebp
ModeratorPlease use the
code
button when posting code.This works for me:
<?php if ( bp_has_groups( bp_ajax_querystring( 'groups' ) . 'type=alphabetical' ) ) : ?>
If you copy & paste, make sure the single quotes ‘ aren’t changed to something else, like `
This is the correct path:
wp-content/themes/relativity/buddypress/groups/groups-loop.php
November 21, 2015 at 6:04 pm #247067In reply to: Order by Alphabetical for groups
goecochic
Participantwp-content/themes/relativity/buddypress/bp-templates/bp-legacy/buddypress/groups/groups-loop.php
I just created these files with no luck either…
November 21, 2015 at 5:55 pm #247066In reply to: Order by Alphabetical for groups
goecochic
ParticipantI put the groups-loop.php modified with
<?php if ( bp_has_groups( bp_ajax_querystring( ‘groups’ ) . ‘type=alphabetical’ ) ) : ?>
in this folder:
wp-content/themes/relativity/buddypress/groups/groups-loop.php
It is still default “last activity”
November 21, 2015 at 5:31 pm #247064In reply to: Order by Alphabetical for groups
shanebp
ModeratorThere is no template called
loop.php
Unless you’re are explicitly using the BP default theme, you should be using this file
buddypress\bp-templates\bp-legacy\buddypress\groups\groups-loop.php
And creating a template overload of that file and making your changes in the overload. -
AuthorSearch Results