Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,151 through 7,175 (of 69,106 total)
  • Author
    Search Results
  • #271335
    Venutius
    Moderator

    If 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.

    #271330
    Venutius
    Moderator

    I 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.

    Venutius
    Moderator
    #271317

    In reply to: Embed Groups

    Venutius
    Moderator

    An 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.

    #271316

    In reply to: Embed Groups

    David Cavins
    Keymaster

    I 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.php as a starter. The loop is powered by bp_has_groups() which is template loop like the WordPress posts loop. You could add a template to your child theme, like page-group-list.php and copy that groups loop into it and start tinkering. you can read more about the parameters you can pass into bp_has_groups() here: https://buddypress.trac.wordpress.org/browser/branches/2.9/src/bp-groups/bp-groups-template.php#L290

    I do want to make sure that you know there’s a group directory built by default, right?

    #271310
    giulietta
    Participant

    Thank 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”&gt 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!
    Giuly

    #271305
    David Cavins
    Keymaster

    Hello, 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!

    #271304

    In reply to: Noindex tag

    David Cavins
    Keymaster

    There’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">';
      }
    });
    #271302
    David Cavins
    Keymaster

    It would be better if you added your custom code to bp-custom.php rather 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/

    #271301
    David Cavins
    Keymaster

    That’s an interesting idea. It seems like it should be possible, because BuddyPress is using a JavaScript library called livestamp to generate those strings. It relies on moment.js for 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/

    #271297
    Henry Wright
    Moderator

    This shouldn’t be possible. BuddyPress checks if a username exists before registering the user.

    #271293
    andreaspaggiari1
    Participant

    Hi,

    How can I set a noindex tag on all buddypress pages, in order not to show them on google?

    #271286
    crooky225
    Participant

    ah… i should have said I’ve installed Buddypress Members Only plugin,

    #271284
    Venutius
    Moderator

    Possibly you could look at the BuddyPress Automatic Friends plugin and use that as a basis for your plugin?

    #271269
    annvb1
    Participant

    Brilliant! 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.

    #271261
    Venutius
    Moderator

    Are you able to check in your plugins directory to make sure the BuddyPress directory has been deleted?

    #271260
    annvb1
    Participant

    Yikes! 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!

    #271253
    Venutius
    Moderator

    Take a look at this Trac ticket https://buddypress.trac.wordpress.org/ticket/7673

    #271251
    Venutius
    Moderator

    The 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.

    #271248
    Venutius
    Moderator

    I 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/

    #271246
    rexormunde
    Participant

    Wow 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/

    #271230

    In reply to: Most Liked Activity

    kevins1553
    Participant

    Looking 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?

    #271229

    In reply to: Activities

    HDcms
    Participant

    Hello @danbp

    PHP Warning: Illegal offset type in /home…./wp-content/plugins/buddypress/bp-activity/bp-activity-functions.php on line 734

    I 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 site

    #271223
    phonoptikj
    Participant

    Hi 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&#8221;, 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&#8221;, 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!!

    #271222

    In reply to: Forum topics list

    Venutius
    Moderator

    There’s no private messaging here. Did you take a look at this page?
    https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

Viewing 25 results - 7,151 through 7,175 (of 69,106 total)
Skip to toolbar