Search Results for 'buddypress'
-
AuthorSearch Results
-
November 3, 2015 at 6:26 pm #246321
shanebp
ModeratorThat info is out-dated.
Look in the BP files for examples of writing a class that extends BP_Component.
For example:class BP_Notifications_Component extends BP_Component {
inbuddypress\bp-notifications\classes\class-bp-notifications-notification.php
November 3, 2015 at 6:03 pm #246319Ryan Bickett
ParticipantNovember 3, 2015 at 5:59 pm #246317Ryan Bickett
Participant@shanebp – Thanks for the suggestion!
Rewrite it as a BuddyPress component. Make it part of the member profile.
By this do you mean to write my Custom Post Type as a plugin for Buddypress?
Or can you point me to any available documentation that I could follow to create a “Buddypress component”?
November 3, 2015 at 5:36 pm #246316shanebp
ModeratorNo need to use multisite. It will create more problems than it solves.
I have already built the CPT as a plugin.
Rewrite it as a BuddyPress component. Make it part of the member profile.
November 3, 2015 at 2:47 pm #246305In reply to: Custom Hook Help
shanebp
ModeratorAfter you register a user, do you see a message that starts with You have successfully created your account! ?
If you do, your function should work.
You could try putting it in the theme/functions.php
Putting code directly into a template is okay if you create a template overload.
November 3, 2015 at 4:01 am #246289In reply to: Displaying cover image BuddyPress 2.4
Andrew
ParticipantI can set the size and default image from that article, but I’m still not sure how to display it in an img tag.
With the WordPress header image, you can display the admin header image in an img tag:
<img src="<?php header_image(); ?>" />
Is there a Buddypress equivalent for the WordPress function
header_image()
?
https://codex.wordpress.org/Function_Reference/header_imageNovember 2, 2015 at 9:09 pm #246271In reply to: groups_get_group in blog 1 from group 2
Henry Wright
ModeratorThere are a number of ways to install BuddyPress in your network. Can you describe your set up?
See the Installation in WordPress Multisite article for more info.
November 2, 2015 at 6:54 pm #246268In reply to: Filtering Activity Loop
nicolemb
ParticipantThanks @shanebp. We tried this and a few other hooks and still have not been able to get the appropriate activity on the stream.
It does seem like the issue with this mu-plugin solution is that not every bit of activity is getting assigned the site id in the meta data. So the filter ends up filtering out most of the activity we should see. Ultimately we are seeking a way to limit activity stream data to the site you are visiting without using multi-network plugins.
We have a wordpress multisite network with buddypress NOT network activated but only activated on specific subsites.
Do you or anyone have any suggestions on how to achieve our goals?
November 2, 2015 at 5:29 pm #246262shanebp
ModeratorThe right way is to use a template overload.
November 2, 2015 at 5:10 pm #246261In reply to: Private Messaging Limit with Membership plans
shanebp
ModeratorI’m not aware of any.
And any such plugin would need to be specific to the code used for membership plans.
Writing such a plugin should be straightforward.
You can post Jobs here.November 2, 2015 at 4:28 pm #246259In reply to: Unable to log in
Engine44
ParticipantI guess I mean all of the forums at this url: https://wordpress.org/support/bb-login.php. But the password works fine on BuddyPress. Thanks for responding.
modemlooper
Moderatorother versions section https://wordpress.org/plugins/buddypress/developers/
November 2, 2015 at 1:21 pm #246246In reply to: NEW! Buddy Member Stats & BuddyPress Community Stats
danbp
Participantthank you for your interest. But… which plugin do you mean ?
If Buddy Community Stats, consider that messaging in BuddyPress concern firstly friends. When you’re on your profile, you can access to YOUR messages count (separated in send and received). Handling this as a global stat is not relevant to site wide activity.
Imagine a community of hundreds of members where only a handfull of members take heavy contacts. This will increase the counter, but will indicate something absolutely false about you site activity – because it is a private members exchange).
To get this count, you could use Buddy Member stats. But this plugin plays only at the member level, and his counts are not grouped to be shown to site admin.The aim of both plugins is to provide some basic counts for community members while remaining fast (if possible) and simple, not to bring extensive metrics, graphs or analytic stats about anything happening in BuddyPress. There are probably more sophisticated plugins who can do that.
November 2, 2015 at 10:42 am #246240In reply to: [Resolved] Can we change group into a member group?
Venutius
ModeratorYes I think you will find it pretty straightforward, you need to install the BuddyPress Group Hierarchy plugin and from there you can go into the group settings and set a parent group for each group. You may also need the group Hierarchy Propagate plugin
November 2, 2015 at 9:23 am #246232In reply to: Displaying cover image BuddyPress 2.4
danbp
ParticipantPlease, read a possible answer in this new codex article:
November 2, 2015 at 8:54 am #246230In reply to: BuddyPress Site wide activity
Venutius
ModeratorLooking at it, I think you could create a template overload if Activity-loop.php and change the scope of bp_has_activities () to friends.
See the activity loop page for more information:
I’m not an expert, I think this is correct.
November 2, 2015 at 7:56 am #246227In reply to: BuddyPress Site wide activity
Venutius
ModeratorMaybe this will do what you want?
https://buddypress.org/support/topic/new-plugin-friends-only-activity-stream/
November 1, 2015 at 10:07 pm #246218In reply to: Can’t upload Group Avatars
Plucker
ParticipantOK I raised https://buddypress.trac.wordpress.org/ticket/6708
Thanks again for your help.
November 1, 2015 at 9:15 pm #246216In reply to: Can’t upload Group Avatars
shanebp
ModeratorI’ve not seen your issue before.
It may be a bug.
You can submit a possible bug here.
Be sure to include info about the browser you’re using and the hosting environment.November 1, 2015 at 8:53 pm #246215In reply to: Can’t upload Group Avatars
Plucker
ParticipantHi shane, thanks for the very prompt response – I’m getting nothing on screen with debug on and nothing in the file if I also switch the debug log file on.
This is with BuddyPress active, bbpress de-activated and with t013 theme and no other plug-ins installed.
I have the same (or very similar) error with member avatars.
Upload Failed! Error was: The uploaded file could not be moved to wp-content/uploads/avatars/1/avatars/1.
November 1, 2015 at 5:32 pm #246210In reply to: Add First Name in the Profile Page
shanebp
ModeratorCreate a template overload of this template:
buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.phpAdd this wherever you like in that template:
bp_displayed_user_fullname();
November 1, 2015 at 3:44 pm #246206In reply to: Can’t upload Group Avatars
Plucker
ParticipantI’ve also tried re-installing WordPress and disabling all other plugins.
Then tried deleting all plug-ins and re-installing WordPress and BuddyPress only, and still the same issue.
November 1, 2015 at 2:34 pm #246201In reply to: buddy presss pages just wont work
@mercime
Participant@iamc0llins
– Could you post the steps you have gone through so far so that we can identify where the roadblock is?
– Did you double check in Settings > BuddyPress – Pages panel whether the names of the page is assigned to the respective component you activated?
– Are you running on WAMP/XAMPP/LAMP or other setup?November 1, 2015 at 12:45 pm #246199In reply to: BuddyPress Login
Henry Wright
ModeratorNovember 1, 2015 at 5:50 am #246196karlosdpm
ParticipantHow can I make their avatars to sync with buddypress?
I want them to see the avatar they have had for years now in their buddy press profile I am installing.Currently their avatars show in regular wordpress pages but not on buddypress pages, for example in the profile page or in the activity page.
thank you for your help
-
AuthorSearch Results