Search Results for 'buddypress'
-
AuthorSearch Results
-
March 14, 2018 at 11:28 am #271335
In reply to: Register & Profile Fields not showing or working
Venutius
ModeratorIf I were you I’ve deactivate all plugins except BuddyPress to see if you still have the issue. I’ve got a test site running 2015 and bp and here it works so it seems that it’s something specific to your site.
March 14, 2018 at 10:31 am #271330In reply to: Register & Profile Fields not showing or working
Venutius
ModeratorI notice the registration form does not ask for the BuddyPress username, only the WordPress username. have you changed anything from the default to make it this way? That login does not seem to work.
March 14, 2018 at 9:08 am #271325Venutius
ModeratorYou can post jobs here: https://buddypress.org/support/forum/plugin-forums/bp-jobs-board/
March 13, 2018 at 9:34 pm #271317In reply to: Embed Groups
Venutius
ModeratorAn alternative would be to use the BuddyPress Extended User Groups Widget from BuddyDev to display groups the user is admin of, then use something like Shortcode any Widget to display it in the page content. Not quite what you are looking for but simpler if you don’t feel up to coding.
March 13, 2018 at 9:03 pm #271316In reply to: Embed Groups
David Cavins
KeymasterI don’t know of a shortcode for listing out groups. However, you could use the code in
buddypress/bp-templates/bp-legacy/buddypress/groups/groups-loop.phpas a starter. The loop is powered bybp_has_groups()which is template loop like the WordPress posts loop. You could add a template to your child theme, likepage-group-list.phpand copy that groups loop into it and start tinkering. you can read more about the parameters you can pass intobp_has_groups()here: https://buddypress.trac.wordpress.org/browser/branches/2.9/src/bp-groups/bp-groups-template.php#L290I do want to make sure that you know there’s a group directory built by default, right?
March 13, 2018 at 4:37 pm #271310In reply to: How to Insert @username in activity comment replies.
giulietta
ParticipantThank you very much for your reply!!!
What I want to do is to echo in the reply comment form textarea “@username” (where username is the username author of the comment I’m going to reply.Add the “@username” for activity update relpy is very easy. I edited the file /plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/entry.php
from:
<textarea id=”ac-input-<?php bp_activity_id(); ?>” class=”ac-input bp-suggestions” name=”ac_input_<?php bp_activity_id(); ?>”></textarea>to:
<?php $userid” = ‘@’ . bp_core_get_username(bp_get_activity_user_id()); ?><textarea id=”ac-input-<?php bp_activity_id(); ?>” class=”ac-input bp-suggestions” name=”ac_input_<?php bp_activity_id(); ?>”> <?php echo $userid; ?> </textarea>
and it work!
On the contrary, when I reply to an activity comment (acomment) I can get the author username by bp_core_get_username(bp_get_activity_comment_user_id()); editing the file: /plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/comment.php
but the button “reply” created by comment.php open the form created by edit.php and within this file I can get only the activity root user_id and I can’t get the comment user_id π
I tried also with the GLOBALS variables but noway πSo what I need is to pass bp_core_get_username(bp_get_activity_comment_user_id()) executed by comment.php to the file edit.php
If this is not possible or to difficult to perform there is a second possibility.
When I reply to a comment the post form is opened attached to the right comment. So it is enought to get the username from the <div class=”acomment-meta”> in the comment area itself. I tried to do that by a little js inside entry.php but I’m too basic to do that π
If you need I can give you credentials to work on my test site. But it is a normal wordpress site with only buddypress plugin and the Minimal theme.
I hope to have been more clear now. If not, I can do another try π but I think that images are not useful for a better explanation of the problem π
It would be fantastic if you could help me as I can’t solve it by myself π
Kisses!
GiulyMarch 13, 2018 at 2:52 pm #271305In reply to: version 2.9.5 for bug fixes!?
David Cavins
KeymasterHello, not sure about the timing of a 2.9.4 release. Also unaware of a bug with the number of friends not matching the indicator bubble. If you can verify that there is a bug, please open a trac ticket: https://buddypress.trac.wordpress.org/
Thanks!
March 13, 2018 at 2:47 pm #271304In reply to: Noindex tag
David Cavins
KeymasterThere’s a function to tell when you’re on a BP page
is_buddypress()so this is a guess at how you could do it:add_action( 'wp_head', function() { if ( is_buddypress() ) { echo '<meta name="robots" content="noindex">'; } });March 13, 2018 at 2:43 pm #271302In reply to: Edit fields in members directory
David Cavins
KeymasterIt would be better if you added your custom code to
bp-custom.phprather than to a theme. (When the theme is updated, you’ll lose your changes.)About
bp-custom.php: https://codex.buddypress.org/themes/bp-custom-php/To insert those fields, you’ll just have to change you code, replacing
'field=Location'with the name of your profile field. Here’s some more info: https://codex.buddypress.org/themes/guides/displaying-extended-profile-fields-on-member-profiles/March 13, 2018 at 2:39 pm #271301In reply to: Change details bp_last_activity
David Cavins
KeymasterThat’s an interesting idea. It seems like it should be possible, because BuddyPress is using a JavaScript library called
livestampto generate those strings. It relies onmoment.jsfor localization (localization usually means translation, but could also mean “custom messages”). I think you could change the “relative time thresholds” as described here:
http://momentjs.com/docs/#/customization/relative-time-threshold/March 13, 2018 at 1:24 pm #271297Henry Wright
ModeratorThis shouldn’t be possible. BuddyPress checks if a username exists before registering the user.
March 13, 2018 at 7:32 am #271293Topic: Noindex tag
in forum How-to & Troubleshootingandreaspaggiari1
ParticipantHi,
How can I set a noindex tag on all buddypress pages, in order not to show them on google?
March 12, 2018 at 3:12 pm #271286In reply to: Allow all members to be friends on sign up
crooky225
Participantah… i should have said I’ve installed Buddypress Members Only plugin,
March 12, 2018 at 3:00 pm #271284In reply to: Allow all members to be friends on sign up
Venutius
ModeratorPossibly you could look at the BuddyPress Automatic Friends plugin and use that as a basis for your plugin?
March 12, 2018 at 12:30 am #271269In reply to: can’t reinstall buddypress after uninstalling it
annvb1
ParticipantBrilliant! Indeed BuddyPress was not fully deleted from my files, when I checked via C-Panel File Manager. AND – yes, I’d hit a limit on my resources with my hosting provider. So I increased my resources allotment, and I removed all BuddyPress files and started over. All seems OK now! Thanks so much.
March 11, 2018 at 10:16 am #271261In reply to: can’t reinstall buddypress after uninstalling it
Venutius
ModeratorAre you able to check in your plugins directory to make sure the BuddyPress directory has been deleted?
March 11, 2018 at 12:26 am #271260In reply to: can’t reinstall buddypress after uninstalling it
annvb1
ParticipantYikes! I decided to clear my cache on the website: installed and used “clear my cache” plugin. Then tried reinstalling buddypress, and now I have a new error message:
Installation failed: Could not copy file. buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php
Help!
March 10, 2018 at 11:44 am #271253In reply to: Create Group not showing up
Venutius
ModeratorTake a look at this Trac ticket https://buddypress.trac.wordpress.org/ticket/7673
March 10, 2018 at 10:25 am #271251In reply to: How to edit Registration Denied email?
Venutius
ModeratorThe registration denied email I think is actually a WordPress email that is also used by BuddyPress. There’s a premium plugin that allows you to edit these system emails, but I’ve not been able to find if it allows you to edit the registration denied email, yu’d need to ask the plugin developers. the plugin is All in One Email for WordPress. That might be able to do what you are looking for.
March 10, 2018 at 9:32 am #271248In reply to: Unlink bbPress Board from BuddyPress Group
Venutius
ModeratorI don’t really understand what you are saying. I tried to recreate what you did but I could not follow exactly what you meant. You should be able to configure this t correct the issue.
Did you create a “Group Forms” category to hold all of your group forums separate from the other forums? if that the parent board you are talking about? If so you should be able to change that in the Dashboard>>Forums page.
Check out this page: https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
March 9, 2018 at 8:46 pm #271246In reply to: BP Multiline Text Box Alignment
rexormunde
ParticipantWow I’m late on getting back to this. The issue is still ongoing. Nothing aligns in the multiline text box element in user profiles. I noticed that when centering in the “Visual” tab, and then going to the “Text” tab, I can see the HTML code that would center the text. After saving, that HTML code vanishes. It doesn’t seem to get saved or applied to the page, like it’s being stripped away.
WordPress: 4.9.4
BuddyPress: 2.9.3
Site: newenglandfurs.org
Theme(s) tested: Avant (Primary)
Example: http://newenglandfurs.org/members/rexormunde/profile/March 8, 2018 at 3:57 pm #271230In reply to: Most Liked Activity
kevins1553
ParticipantLooking more into this, it appears that this can be accomplished by using a post-type. I can find many threads about adding a new post-type to buddypress activity page, but what is the post-type that is used in by buddypress activity plus stream or when a user posts to a activity stream, updates there profile, adds an event, etc?
March 8, 2018 at 2:58 pm #271229In reply to: Activities
HDcms
ParticipantHello @danbp
PHP Warning: Illegal offset type in /homeβ¦./wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php on line 734I found where the error came from:
add_filter( 'bp_after_has_activities_parse_args', 'activites_affiche_infos' ); function activites_affiche_infos( $retval ) { // if ( bp_is_active( 'activity' ) ) { $retval['action'] = array( 'activity_comment', 'activity_update', //'created_group', //'friendship_created', 'joined_group', 'last_activity', //'new_avatar', 'new_blog_comment', 'new_blog_post', //'new_member', 'updated_profile' ); return $retval; // } }I feel that this function does not work anymore with the latest version of buddypress. If I disable it, => all works
I activate it by trying several solutions and nothing else works !!
I tried your code without success either@ +
An “old” member of your BP siteMarch 8, 2018 at 12:36 am #271223In reply to: Impossible to upload photos (profile and cover)
phonoptikj
ParticipantHi everyone π
IΒ΄m having the same issue, but only with the profile and cover images. The rest of the images are uploading fine (PHP its running GD already). The thing is that my site is running WordPress with BuddyPress on Heroku. All the uploaded images go to the s3 amazon bucket, except for the profile image and cover image, which, once they are uploaded, go to the Heroku ephemeral file system, so after a little while they disappear (as this is their policy on free accounts, they restart the “dyno” as they call it, which means the server). The difference you can tell on the permalink generated for every image, for instance, If I upload an image normally from the media library or even from a plugin which let me upload images and media from my BuddyPress profile, they get this kind of permalink: “http://s3-sa-east-1.amazonaws.com/artlikeall1/content/uploads/2018/03/07212557/my-image.jpg”, now when I try to change my cover and profile image from my BuddyPress profile view, the images get uploaded with this kind of permalink: “http://mysite.herokuapp.com/content/uploads/avatars/61/myprofilepic.jpg”, and after a while it disappears.So please anyone could shed some light on this? it seems that there is no info about running BuddyPress with Heroku. Thanks!!
March 7, 2018 at 6:57 pm #271222In reply to: Forum topics list
Venutius
ModeratorThere’s no private messaging here. Did you take a look at this page?
https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/ -
AuthorSearch Results