-
Condos Deal's profile was updated 9 years, 5 months ago
-
Bunty replied to the topic why there is no action for group photo upload? in the forum Requests & Feedback 9 years, 5 months ago
Thanks. I’ll do that. 🙂
-
Henry Wright replied to the topic why there is no action for group photo upload? in the forum Requests & Feedback 9 years, 5 months ago
You can request one be added here
-
Bunty started the topic why there is no action for group photo upload? in the forum Requests & Feedback 9 years, 5 months ago
We have this action while user profile picture upload in function bp_avatar_ajax_set() into “buddypress/bp-core/bp-core-avatars.php”
do_action( 'xprofile_avatar_uploaded', (int) $avatar_data['item_id'], $avatar_data['type'] );This action is only for user photo upload.
So why buddypress didn’t gave such action for group photo…[Read more]
-
John James Jacoby commented on the post, BuddyPress 2.7.0 – "Migliaccio", on the site BuddyPress.org 9 years, 5 months ago
Hi @livingflame. Thanks for this feedback. We’re listening, and these are all great ideas.
-
John James Jacoby commented on the post, BuddyPress 2.7.1, on the site BuddyPress.org 9 years, 5 months ago
Hey Kevin. Replying here to make sure all bases are covered. We released 2.7.2 right away to fix this. I’m really sorry for the inconvenience, and we all learned a little bit more about double-negative ternary […]
-
Henry Wright replied to the topic Add "Anonymous" to menu bar in the forum Installing BuddyPress 9 years, 5 months ago
You can use the
is_user_logged_in()function to check. For exampleif ( is_user_logged_in() ) {
// This user isn't logged in.
echo 'Anon';
} else {
// This user is logged in.
// Do something else.
} -
Paul Gibbs updated the BuddyPress Release Leads and Deputies page, on the BuddyPress Codex 9 years, 5 months ago
The release lead works with all contributors to ensure the success of the release. The role blends aspects of being a product manager, project manager, engineering manager, release manager, and community manager. […]
-
Paul Gibbs updated the BuddyPress commit access page, on the BuddyPress Codex 9 years, 5 months ago
What is commit access?
The code that comprises BuddyPress is written by volunteers. Anyone who wants to suggest an improvement or a bugfix to the BP codebase is welcome to do so, by submitting their proposed […]
-
Kieran replied to the topic how to change @ mention name in the forum Installing BuddyPress 9 years, 5 months ago
I don’t have an answer for you right now, I’m looking into the same issue too.
As I understand it you have the following issue. You have a user with the username Dave, their profile field ‘Name’ is called Apple, using mentions someone is tagging Apple but when posted it prints Dave and NOT Apple. Is that correct?
Kieran.
-
Andrew Tegenkamp started the topic Wrapper function if BP is activated? in the forum Creating & Extending 9 years, 5 months ago
I’m following along with https://codex.buddypress.org/plugindev/how-to-edit-group-meta-tutorial/ to add some group meta and it works great.
I’m wondering if the second code block “wrapper function if BP is activated” is still the preferred way and if it’s required. I haven’t seen that in other plugins with robust hooks and filters recently like…[Read more]
-
Henry Wright replied to the topic How to edit title on page in buddypress activate template in the forum How-to & Troubleshooting 9 years, 5 months ago
The .mo file should go in this folder wp-content/languages/plugins
The wp-content folder won’t get overwritten. That’s where all of your content is kept.
-
Henry Wright replied to the topic Dynamic Link in the forum Installing BuddyPress 9 years, 5 months ago
-
Henry Wright replied to the topic How to edit title on page in buddypress activate template in the forum How-to & Troubleshooting 9 years, 5 months ago
@venutius is right; a .mo file is the way to go. Check out this article which should help get you started:
-
Slava Abakumov replied to the topic How to view pending signup profile fields in the forum How-to & Troubleshooting 9 years, 5 months ago
Please take a minute to read this post: https://codex.buddypress.org/themes/bp-custom-php/
Short answer:/wp-content/plugins/bp-custom.php -
Slava Abakumov replied to the topic How to view pending signup profile fields in the forum How-to & Troubleshooting 9 years, 5 months ago
Related ticket: https://buddypress.trac.wordpress.org/ticket/7261
-
Henry Wright replied to the topic bp_ajax_querystring filter not runing in the forum How-to & Troubleshooting 9 years, 5 months ago
Inside your plugin try adding:
add_action( 'init', function() {
add_filter( 'bp_ajax_querystring', 'your_function', 10, 2 );
}Of course, also define your function:
function your_function( $ajax_querystring, $object ) {
// Code here.
return $ajax_querystring;
} -
Henry Wright replied to the topic Buddypress from mobile in the forum Installing BuddyPress 9 years, 5 months ago
You will need to have an understanding of CSS. To get started, take a look here
https://developer.mozilla.org/en-US/docs/Web/CSS
It’s a very useful reference; I’ve had it bookmarked for a while now.
-
Andrew Tegenkamp replied to the topic Read Only Group? in the forum How-to & Troubleshooting 9 years, 5 months ago
Thanks Hugo. Looks like it’s http://commonsinabox.org/documentation/plugins/bp-group-announcements and https://github.com/cuny-academic-commons/bp-group-announcements has the code so I’ll definitely start there.
@Venutius, I’ll circle back here if I find anything exciting to share, but may be a month or so.
-
Chad Morrison's profile was updated 9 years, 5 months ago
- Load More