Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,176 through 3,200 (of 69,061 total)
  • Author
    Search Results
  • alexhal
    Participant

    Thanks for the reply but our product is based on buddypress and we are using bp_send_email function to send various custom registered emails.
    The issue is that our customers are getting this error and we cannot recommend end user to apply patches .
    So I request to release a small update for this fix so that we can ask our users to simply update buddypress plugin

    #313691

    In reply to: Link to Profile Edit?

    Jennifer Moss
    Participant

    I realized that I need to use the SCREEN OPTIONS pulldown at the top of MENU SETUP to enable the BuddyPress menu elements. Thanks.

    #313687
    shanebp
    Moderator

    Are you using BuddyPress or BuddyBoss ?
    Are you using some theme that shows the members in a grid?

    You need to find the members loop template and use or add a hook in that template so that you can generate the display of profile data in that area.

    #313682
    lukejacksonvgon
    Participant

    Hi, I’m looking for a suitable group plug-in for a website so hope you can help. I’m very new to Buddypress so apologies if this question has already been answered.

    Is it possible to download documents (particularly interested in PDF, Word and Excel) from a Group page/wall using Buddypress? The examples I’ve seen so far do not have any examples of this unfortunately.

    Thanks in advance,
    Luke

    #313675
    jcfromkc
    Participant
    jcfromkc
    Participant

    Does anyone know how to update the time format for BuddyPress? I’d like to change the format from the default.

    20 seconds ago. I’d like to it to read a few seconds ago.
    1 day, 7 hours ago. I’d like it to read 1 day ago.
    1 week, 2 days ago. I’d like it to read 1 week ago.
    2 weeks, 3 days ago. I’d like it to read 2 weeks ago.

    And so on..

    Does anyone actually know how to achieve this without telling me to look at function bp_core_time_since?

    #313658
    shanebp
    Moderator

    I confirm the OP’s description of the issue.
    I have opened a ticket.

    mjajmom
    Participant

    When composing a message to more than one user, we get an immediate error message that says “There has been a critical error on your website”. The message will still be sent and you can find it in your sent folder. However, it does not send the copy to the user’s personal email. Sending a message to one single user works fine (with no error message and a copy sent to the user’s personal email).

    Everything was working fine until we updated to BuddyPress 6.2.0 and WordPress 5.5. We also run a highend theme.

    Advice please.

    King Ding
    Participant

    Hello!

    Could someone perhaps help me adapt this code? Currently it shows a copy of all blog comments in the activity feed. I want it to rather show copies of learndash lesson comments to their associated course group. There is a plugin that does this, but it’s glorified with many other features, and the feature that I would like for doesn’t work as it should anyways.

    /* Post Comments in Buddypress Activity */
    function bca_record_activity($comment_id, $approval) {
        if($approval == 1) {
            $comment = get_comment($comment_id);
            $userlink = bp_core_get_userlink($comment->user_id);
            $postlink = '<a href="' . get_permalink($comment->comment_post_ID) . '">' 
                            . get_the_title($comment->comment_post_ID) . '</a>';
     
            bp_activity_add(array(
                'action'            => sprintf( __( '%1$s commented on the lesson: %2$s', 'buddypress' ), 
                                                    $userlink, $postlink),
                'content'           => $comment->comment_content,
                'component'         => 'bp_plugin',
                'user_id'           => $comment->user_id,
                'type'              => 'new_blog_comment',
            ));
         
        }
    }
    //comment_post is triggered "just after a comment is saved in the database".
    add_action('comment_post', 'bca_record_activity', 10, 2);
    // We want activity entries of blog comments to be shown as "mini"-entries
    function bca_minify_activity($array) {
        $array[] = 'new_blog_comment';
        return $array;
    }
    add_filter('bp_activity_mini_activity_types', 'bca_minify_activity');
    // Disables comments on this type of activity entry
    function bca_remove_commenting($can_comment) {
        if($can_comment == true) {
    		$can_comment = ! ('new_blog_comment' == bp_get_activity_action_name());
        }
        return $can_comment;
    }
    add_filter('bp_activity_can_comment', 'bca_remove_commenting');

    Plugin I reference: https://wordpress.org/plugins/buddypress-learndash/

    Your time and support is greatly appreciated!

    #313616
    Engine44
    Participant

    I have forgotten where a particular page is in Buddypress. When you first register, you fill out the required and optional profile fields. You also get to choose a visibility to assign to each profile field. Where do I go to edit the visibility choices that were originally made? Thanks.

    #313607

    In reply to: BuddyPress 6.2.0

    Mathieu Viet
    Moderator

    hi @olamyklebost

    I believe the best in this case is to download BuddyPress again and replace the one you have on your server with this downloaded version.

    justin171185
    Participant

    Hello,
    First off, let me say that I am totally blind and thus use a screen reader. I am decent from inside wp-admin, but very nervous about making code changes, unless I can litterally do a copy/paste. So please please be nice, and make your reply as detailed as possible. I have found posts online to remove and reorder items from Buddypress navbar, but no way to remove it completely.
    You may ask, why would I want to do this? Well, I run an online radio station, and buddypress is added feature, to create an online community around the station, with chat, a forum, and on demand content. However, things weren’t going as I wanted with my radio theme.
    I tried to use the navigation widget which comes with the new Buddypress template, but so far as I could tell, with my screen reader, it was not showing up. Plus, the new bp template wasn’t playing well with the rest of my site, so switched to legacy. So, I have created a custom menu, with some BuddyPress items, some BBPress items, and some custom pages. And used the standard wordpress Navigation Menu widget to make items available from anywhere on the site. So, I have all the functionality I need right there. And thus the navbar just ends up adding duplicate links.

    I know if you do this wrong, you can break buddypress functions. I want to keep features, just get rid of the navbar.
    Using latest wordpress, latest BuddyPress, and On Air2 radio station theme.
    Your help will be much appreciated. If this could be done via plugin, that would be incredible. Otherwise, please be very very specific. Exact file to edit/create, exact lines to add/edit/remove, exact changes to be made. Like I said, I am very confident in wp-admin, but scared to death of code, more specifically, breaking something and not being able to fix it.

    #313582
    cl0ne
    Participant

    @warrencat,

    I have been hoping for a solution to this since 2017. I had to find excuses to force users to hit the save button. The issues that I’m not even importing some large user database in which this limitation becomes more problematic. I’m talking about brand new installation with new users. There is no reason that a new user should have to do this before visibility settings can be applied. It makes absolutely no sense. It’s ironic since Admins’ settings are subservient to a user’s interaction.

    And I thought this was a sensitive enough issue that it would have been resolved by now. I’m surprised that more people have not made noise. Apparently it has existed since at least 2013 (https://buddypress.org/support/topic/buddypress-x-profile-visibility-doesnt-work/)!

    Then another user brought this up prompting the creation of a ticket in the trac system which can be found here:https://buddypress.trac.wordpress.org/ticket/8093

    This ticket does provide a patch that fixes the issue for the profile details. However, in my case, a user’s last name is supposed to be private but since the last name shows up in more places than in the profile details (i.e. title tag), you are still left with a half-baked solution. But the moment you save, it works flawlessly.

    The issue is set to be fixed in version 7. Let’s pray.

    #313555
    cmsplay
    Participant

    Is there a simple way to ensure that users cannot see each others’ BP profiles?

    …For example to set BP so that users can only see their own profiles (while admin can see all profiles).

    #313550
    msquare1
    Participant

    Hey guys! A quick question pls!

    How long would it take my buddypress community to exceed the 200gb storage capacity of the business plan for WordPress.com? And if it does which is the best host to transfer my site to.

    Thanks in advance guys!

    #313544
    amtenbrink
    Participant

    Hi,

    how can i hide the wordpress toolbar (adminbar) for logged in (!) buddypress members?

    thanks!

    kimunyest
    Participant

    Hello Guys!
    I have a problem with BuddyPress v. 6.2.0.

    When I try to add an entry (activities) to my profile it is not visible. It is also not in the history (in the admin panel). After refreshing the page, it appears only under my nickname with a note (a few seconds ago). This note is still the same. After adding a comment, this one also does not appear in activities.

    The second problem is with group formation. When I want to create a group and give its name and description, and then try to go to the next stage, I get a message that it is not possible to create a group, try again later.

    Anyone can help me?

    amtenbrink
    Participant

    Hi!

    when i integrate buddypress items (such as profile, messages, groups…) in the menu, they are just shown if the visitor is logged in.

    when i integrate a regular page (i created in wordpress) in the menu, it is shown weather the visitor i slogged in or not.

    when i copy the css class of a buddypress menu item (e.g. bp-menu bp-settings-nav) and paste it in the css field of the regular page, this menu item is also just shown to logged in visitors. this is exactly what i need!

    the problem is just, that it kind of confuses the menu. all tems with the same class are spoken at once.

    is it possible to create my own css class of the same kind, that hides the menu items in case the visitor isn’t logged in?!

    thanks a lot!!!

    #313528
    Eric
    Participant

    dear team,
    i am afraid i´ve found a bug in the “create a site” process under wordpress multisite and buddypress.

    issue: when creating a new site via BP frontend (/create/), BP uses the site domain of the BP_ROOT_BLOG blog id (site where BP runs) instead of the BLOG_ID_CURRENT_SITE domain (main site of the multisite install) to create a new site on the multisite install, but shows the “correct” multisite main domain on the BP create frontend when entering site name and site title of the new site.

    i noticed that issue through a new project setup where i needed to set the BP site on a different domain than the main site of the multisite. tested and replicable on my siteground install with wp 5.5 and bp 6.2.0

    looks like a low prio bug, but if someone has an idea to fix this, i would love to try it on my testinstall.

    tnx, Eric

    #313527
    joibar
    Participant

    Hi everyone, I am new to BuddyPress and I founded amazing! Really easy to install and Set-up.

    I am just having issue with one page, the profile page. When I go to members page (http://www.montesdeoca.guachis.com/miembros/) everything is fine but when I go further in one member (http://www.montesdeoca.guachis.com/miembros/joacotest/) all the header messed up, also the sticky one I believe that is going to a default version and not to the right one.

    Wordpress ver: 5.5
    BuddyPress: 6.2.0
    Theme: Buzzy Mikado

    Any idea or clue will be really appreciated.
    Thanks!

    #313524

    In reply to: follow

    mungbean
    Participant

    There is a deprecated plugin https://wordpress.org/plugins/buddypress-followers/

    It has not been updated.

    I’m also looking for similar capability. I want users to be able to follow other users (without being friends) as well as follow groups (without being group members)

    Is there a new solution?

    #313523
    andhi1
    Participant

    Hi!

    I can not post message or reply to messages in BuddyPress profile message.
    The “Send reply” button and “Send reply” button does not respond when I click on it

    This applies to my site https://vuxenflirta.wpcomstaging.com/

    What to do?

    Best regards
    Anders

    #313515
    Quintinm
    Participant

    I just found the answer which works for me:
    I would like to know how I can add the link on the members page to the author’s posts now.

    Thanks.

    /**
     * Filter all instances of the_author_posts_link() so that the "author link"
     * no longer points to the WP author archive at /author/username
     * but instead points to the BuddyPress user profile at /members/username.
     *
     * @param string $link   Calculated link to the author's archive.
     * @param int $author_id ID of the author.
     * @return string Link to the user's BP profile.
     */
    add_filter( 'author_link', 'dc_bp_filter_author_link', 10, 2 );
    function dc_bp_filter_author_link( $link, $author_id ) {
      return bp_core_get_user_domain( $author_id );
    }
    #313514
    Quintinm
    Participant

    Hello.
    I am also looking to link the author’s box to the BB profile page instead of the standard authors page.
    I am using buddyboss and the buddyboss child theme.
    I wish i was more proficient at coding, but i am not, so I need advice on how to do this please.

    How would I create the function that will link to the BB profile page?

    // Change Post’s Author URL to Buddypress Profile URL
    add_filter(‘generate_post_author_output’,’generate_post_author_output_buddyprss_url’);

    function generate_post_author_output_buddyprss_url( $post_author_profile_link ){
    $post_author_profile_link = sprintf( ‘ <span class=”byline”>%1$s</span>’,
    sprintf( ‘<span class=”author vcard” itemtype=”http://schema.org/Person&#8221; itemscope=”itemscope” itemprop=”author”>%1$s <span class=”author-name” itemprop=”name”>%4$s</span></span>’,
    __( ‘by’,’generatepress’),
    esc_url( bp_core_get_user_domain( get_the_author_meta( ‘ID’ ) ) ),
    esc_attr( sprintf( __( ‘Know more about %s’, ‘generatepress’ ), get_the_author() ) ),
    esc_html( get_the_author() )
    )
    ) ;
    return $post_author_profile_link;

    }

    #313512
    thelanj
    Participant

    feel like I’m about to punch a wall!

    Groups sorting in buddypress is not working. I’m on generic 2020 theme. Buddypress installed. Everything else deactivated.

    Normal all members search -> fine
    Switch to NOUVEU, turn off groups homepage and go to members page search -> fine

    NOTHING else works.

    I’m on kinsta. Anyone else having similar problems?

Viewing 25 results - 3,176 through 3,200 (of 69,061 total)
Skip to toolbar