Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,126 through 3,150 (of 68,967 total)
  • Author
    Search Results
  • #314337
    Steve Keller
    Participant

    Nick,
    Thanks for confirming what I guess is standard protocol for BuddyPress, the taking over of a site home page. I was curious about the BP page designations that just appeared, and not through the std. WordPress “Add New” avenue. I deactivated until I understand it better.

    Did you find a good step-by-step guide for the install, or am I overthinking this?

    Thanks,
    Steve Keller

    #314236
    agizzie
    Participant

    here is what I’ve tried…

    //rename notifications (drop down) profile menu list
    
    function bpcodex_rename_notifications_nav_items() {
    
        buddypress()->members->nav->edit_nav( array( 'name' => __( 'Teams' ) ), 'groups' );
        
    }
    add_action( 'bp_actions', 'bpcodex_rename_notifications_nav_items' );
    agizzie
    Participant

    Buddypress 2.6, wordpress 5.5.1

    I’ve re-named groups to teams on all menus but I can’t work out how to rename it on the profile dropdown menu, (the menu that drops down when clicking on profile picture – top right of screen). Any suggestions? Thanks

    #314099
    valuser
    Participant

    This Link actually might be better as it addresses a very similar question

    #314036
    webcomon
    Participant

    Entries on the forum are disappearing. In other words, I could see those entries a few days ago (when logged in as a user called “John”), but today I cannot see those entries any more (I am logged in as the same user “John”)

    However, I can still see those entries under the activity menu (from the backend i.e. when logged in as “Admin”)

    Any idea why this is happening?

    How to stop this from happening?

    Thank you.

    Required info:
    WordPress version : 5.5.1
    BuddyPress version: 6.3.0
    Site: https://www.escanada.org/

    King Ding
    Participant

    I’m creating a plugin that records wordpress comments as a bp_activity post. I’ve been successful at recording the activity, but there’s just one thing that I want to add… a new possible value! Here’s the plugin in a nutshell:

    function kd_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: %2$s', 'buddypress' ), 
                                                    $userlink, $postlink),
                'content'           => $comment->comment_content,
                'component'         => 'groups',
                'user_id'           => $comment->user_id,
                'type'              => 'new_blog_comment',
    	    'new_row'           => '123'  //THIS is the new row I want to record
            ));
         
        }
    }
    //triggered just after a comment is saved in the database.
    add_action('comment_post', 'kd_record_activity', 10, 2);
    
    // We want activity entries of blog comments to be shown as mini-entries
    function kd_minify_activity($array) {
        $array[] = 'new_blog_comment';
        return $array;
    }
    add_filter('bp_activity_mini_activity_types', 'kd_minify_activity');

    I understand that by default, the bp_activity_add hook only allows for certain variables. I expected that I could just add another variable to the array in bp-activity-functions.php and everything would work as expected, but apparently not! Please find //MY NEW ROW! in the following code: https://pastebin.com/3nVE4fya

    What else am I missing? P.S – the row exists in the database, it’s just that it does not record any data that I set.

    Thank you!

    #313951
    valuser
    Participant

    This Link MAY be of some help

    #313947
    kerchmcc
    Participant

    I am running:
    WP 5.5.1
    BuddyPress 6.3.0
    PaidMembershipsPro 2.4.4

    There exist several long time active members who do not show up in the Buddypress directory.
    I user-switched to the guy who complained and can’t see anything in his list of fields that would make him invisible in the directory. I know he has been active because he’s the one who started noticing that something was wrong.

    Additionally, I ran the code to mark all members as active. (https://gist.github.com/shanebp/b73343e9c9a6509d2bbc47de80c881c1) Then removed it (as required), updated the buddypress member count, checked the data base (all members show up with a last_activity of today) and still not everybody shows up.

    I don’t know the right questions to ask past this. But I need all the members to show up in the directory.
    Thanks
    Kerch

    orangeboxdev
    Participant

    Hello!

    I have a multisite with BuddyPress activated. When I go to the activity stream on each sub site, I can see the activity for the whole network. I would like to only see the activity related to the users on each subsite.

    Does anyone have any recommendations or tips on how I could achieve this?

    Anything helps! <3

    #313934
    ghaliafatima
    Participant

    Can i create multiple registration forms for multiple users in buddypress

    #313930

    Topic: Help

    sabomoh
    Participant

    Hello
    I need help,i am trying to embed Instagram feeds as buddypress post but can’t seem to get a plug-in to do that most plugins just offer options to display Instagram post as short code, except if it’s possible to somehow get buddypress to display a shortcode as posts. Please Someone help me out
    Thanks

    #313927
    tweetynsly
    Participant

    Hello, there seems to be a problem with buddypress. Whenever I assign a registration page it just redirects to homepage.

    I see others are experiencing the same problem but no one is addressing/ solving it.

    Can someone please solve the issue. Seems there is a bug or something.

    I have uninstalled and reinstalled several times
    I have cleared cache on both site and browser
    I have contacted my hosting and they troubleshoot and said it’s a bug with plugin.
    I have even deactivated all plugins except buddypress.

    Nothing worked. Please help

    #313922
    kriskl
    Participant

    if I may add, it used to work OK. I have a feeling the latest buddypress update may have broken something

    #313921
    shanebp
    Moderator

    buddypress.org is a subsite of wordpress.org – only one person can address that error and they know about it.

    #313919
    kriskl
    Participant

    @shanebp

    members profiles – are buddypress ingredient. not bbpress
    Posting about it on bbpress – they will reply – it is buddypress problem.. chicken and egg.. 🙂

    I am just surprised you or anyone is not interested to investigate errors that exist in the software on this very website.. 🙁

    #313916

    In reply to: Buddypress Users

    kerchmcc
    Participant

    Additionally, in the database _bp_activity all members show the last active date of today, just now. PMPro shows membership of 565. The buddypress count is just 301.

    #313910
    CoachPadraig
    Participant

    I’m using WP 5.5.1 with BuddyPress 6.2.0 with MemberPress Plus 1.9.0 and
    MemberPress + BuddyPress Integration 1.1.7

    I would like to have a set of questions for new members in a given group to answer when they first open the group page (ie. some onboarding questions to get the discussion started among the group members).

    Is there a way I can set up these questions and ask members to answer them as part of their profile OR a way I can have these questions show up as a post to the member, automatically to get them started engaging?

    #313909
    shanebp
    Moderator

    @kriskki – these forums use bbPress, not BuddyPress.
    If you have an issue with bbPress forums, please use their support site:
    https://bbpress.org/forums/

    #313906
    kriskl
    Participant

    it seems the very problem exists on this buddypress website.

    for example:
    page one shows replies..
    https://buddypress.org/members/vapvarun/forums/replies/

    BUT. when you want to go to page 2..

    BuddyPress

    it redirects to the homepage..

    anyone has a fix for this please??

    #313903
    #313899

    In reply to: Buddypress Users

    shanebp
    Moderator

    The code is meant to be used ONCE and then removed.
    During that single run, it can be slow depending on the number of members you have.
    After you have removed the code, go to Dashboard -> Tools -> BuddyPress then run the Repair total members count.

    amaclenan
    Participant

    BP Version: 6.3.0
    WP Version: 5.5.1
    Theme: Avada 7.0.2

    Site link: https://mrkhconnect.co.uk/

    The menus at the top of the BuddyPress pages – i.e. Profile & Notifications – are displaying the HTML but none of the formatting. Hence the pages are a mess and unusable by our members.

    All other pages display correctly (inc. BBPress Forums page) so can only conclude this is a BuddyPress problem.

    Any ideas?!

    #313878
    VibeThemes
    Participant

    1. Save the permalinks at WP admin – Settings – Permalinks.
    2. Make sure you do not create pages with same slug as that of Member Nicename. For example : Yoursite.com/AABB and yoursite.com/members/AABB <– this can cause conflict.
    3. Check the Mod rewrite module of Apache is installed and working.

    Also more details are required about the configuration. I do not think this is a BuddyPress related issue.

    #313874
    lifebus
    Participant

    Hi, I am integrating AWPCP into our membership club site and for some reason when I click on a classified ad listing, it takes me to a member’s profile page.

    On the BuddyPress settings in the Dashboard, is a setting that integrates AWPCP with BuddyPress, but when I uncheck this and save, the box is re-checked automatically. I am unsure whether this is the issue, but it certainly appears to be a fault.

    I have gone through and restored a default theme and disabled all plugins, re-enabling them one-by-one and it is definitely BuddyPress that is causing this to happen. Therefore, I am hoping you might be able to assist me with this please?

    #313871
    iamthewebb
    Participant

    Hey @thegradhub
    Youzer heavily customizes buddypress so you will need to ask their support

Viewing 25 results - 3,126 through 3,150 (of 68,967 total)
Skip to toolbar