Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,676 through 5,700 (of 94,540 total)
  • Author
    Search Results
  • #307233
    rsmithgs
    Participant

    Hello guys,

    Just in case anyone else was wondering. If you want to grab data from topics or replies you need to grab the hook that fires after it is saved. These 2 did the trick:

    //for when new topic was created
    add_action('bbp_new_topic_post_extras', 'group_has_new_topic', 10, 2);
    //for when new reply was created to a topic
    add_action('bbp_new_reply_post_extras', 'group_topic_has_new_reply', 10, 2);

    I know that this will grab all bbPress topics and replies, but it fits my purposes.
    If anyone knows how to grab only BuddyPress Group Forums’ Topics and Replies that would be awesome, but for now this will work for me and I hope it works for others!

    These actions rely on $topic_id and $reply_id only and respectfully, but you can grab any other data such as Topic Title, Forum Name, Topic or Reply Author, etc. through the Topic or Reply ID alone like so:

    $topic_id = bbp_get_reply_topic_id($reply_id);
        $topic_title = bbp_get_topic_title($topic_id);
        $forum_id = bbp_get_topic_forum_id($topic_id);
        $forum_title = bbp_get_forum_title($forum_id);
        $user = bbp_get_reply_author_id($reply_id);
        $user_info = get_userdata($user);
        $username = $user_info->user_login;
    #307224
    Blake
    Participant

    I have an issue where I have https://sucuri.net locking down the wp-admin interface for security purposes to specific IP addresses.

    The BuddyPress plugin profile and cover image upload fields, on the profile page, appear to be using the wp-admin/admin-ajax.php file to upload images to the site. I also have users who log into the site, but only on the front-end of the site. They do not have access to the admin section. These users are not able to upload images since the admin section is locked down.

    One thinking I noticed was that if I disable javascript in my browser for the profile photo upload screen the UI falls back to a PHP based upload mechanism. Is there a way to make the PHP method the default for all forms in BuddyPress so that I don’t have to unlock my admin interface?

    Thank you for any help.

    #307223
    shemakeswebsites
    Participant

    Hello, I have a a site where users seldom use friend connections – I’ve decided to do away with the feature. When I try to disable it from the BuddyPress settings, I get a message that reads, “Settings saved” but the friend connection function is still enabled….

    Any ideas on addressing this?

    #307222
    rsmithgs
    Participant

    WordPress Version: 5.2.2
    BuddyPress Version: 4.4.0
    bbPress Version: 2.5.14

    Hello, I’m looking for a hook to grab data of new topics and replies as they are added.

    I was thinking this would do the trick, but it does not trigger my curl request.

    add_action('groups_forum_new_topic_after', 'group_was_posted_on', 10, 2);
    add_action('groups_forum_new_reply_after', 'group_was_posted_on', 10, 2);

    Then I tried this:

    //new topic was created
    add_action('bp_forums_new_topic', 'group_was_posted_on', 10, 2);
    //new post was created to a topic
    add_action('bp_forums_new_post', 'group_was_posted_on', 10, 2);

    Still no luck. What actions/hooks do I need to use for:
    User creates a new topic
    User creates a new reply to a topic

    Thanks for your help

    #307221
    Heather Acton
    Participant

    I worked with WP Engine to get this fixed on a site so thought I’d paste his steps here in case it helps anyone else. This got activity feed loading activity (even on groups) while using BP Nouveau.

    Here are his comments (Micah B):

    so I did three total things. I cache excluded two URLs:

    ^/login
    ^/activity

    and I turned a very specific setting on our end off – it was referenced in an old BuddyPress ticket that related to some of the issues I was seeing.

    The setting name is “heartbeat_autosave_only” which I toggled to off

    Hope this helps!

    #307218
    buddyhelp
    Participant

    Hi,

    I can’t enable the registration.
    1) There is no option “allow anyone to register” in my wordpress admin settings
    2) When I click on “pages” on buddypress pages setting: under “registration” it says something in the lines of “Registration is currently disabled. Before you are allowed to register to the page, please enable the recording to select either “User office can be registered” or “Both websites and user offices can register” on this page.”

    when I write the admin username and password, it leads to a blank page saying “Sorry, you are not allowed to access this page.”

    What to do?

    Thanks for all the help in advance!

    PS: I am using a Norwegian version of it via University of Bergen, if it helps.

    #307217
    vida28
    Participant

    Hi,Got this error on the last update.
    fatal error: call to undefined function bp_get_activity_slug() in /home/farslm/domains/farslms.com/public_html/wp-content/plugins/buddypress/bp-members/classes/class-bp-members-component.php on line 236

    #307203
    morgandebray
    Participant

    Hi,

    I’ve seen that I have to copy the bp-legacy folder into my theme to override the template file.

    I’ve done that, it seems ok, but I can’t override the other file, such as bp-group-template.php ? I need to override the function that generates the “sort by” search (without touching the core files, of course).

    I’ve tried to override the function inside the buddypress-function.php file and in my theme function.php file, but nothing is working (still have the default form).

    See :

    `add_filter(“bp_groups_members_filter”, “mytheme_groups_members_filter_custom”);

    function mytheme_groups_members_filter_custom(){
    return “test”;
    }

    #307197
    JapanFreak
    Participant

    Hi guys im looking for buddypress compatible plugin
    so i want like every user to have an list on thier profile
    a list with an avatar size image (like 360 x 360) and a description beside every image and to be able to share this list..
    do you think that an plugin like that exists?

    pceservices
    Participant

    Hi all,

    I have to build a meetingroom booking website

    Bookings are sold by Woocommerce but I have to ask customer to associate a people group with booking (to have list of all meeting partipants)

    So I’d like to use BuddyPress to let user create his group(s)

    Is there a plugin to integrate BP into WC so during checkout, user is asked to create or select existing BP group and associate it to current order ?

    Thanks a lot

    #307190
    emilia015
    Participant

    Hello, I need help please. I am trying to show the list of members of a group. I have the code here

    <?php
    
        global $groups_template; 
     
        if ( empty( $group ) ) { 
            $group =& $groups_template->group; 
        } 
     
        if ( ! empty( $group->is_member ) ) : ?> 
     
            <ul id="group-members"> 
     
                <?php foreach( (array) $group->is_member as $is_member ) { ?> 
     
                    <li> 
                        <a href="<?php echo bp_core_get_user_domain( $is_member->user_id, $is_member->user_nicename, $is_member->user_login ) ?>"></a>
                    </li> 
     
                <?php } ?> 
     
            </ul> 
     
    <?php else : ?> 
     
            <span class="activity"><?php _e( 'No Members', 'buddypress' ) ?></span> 
     
    <?php endif; 
    
    ?>

    Here is the result.

    <ul id="group-members"> 
         <li><a href=""></a></li> 
    </ul>

    I would greatly appreciate any help. Thank you very much in advance

    #307189
    rupalifairshare
    Participant

    I am using buddypress form for wplms. I want to take profile feidls i created in wp settings->user->profile fields in my buddy press form. How to integrate these new fields in buddypress form.

    Sujatha
    Participant

    Hello Friends,

    I want to created an android application for my website created with buddypress. I have a plan to provide the android app to my website viewers. Help me to create an android app for my buddypress website.

    Thank You.

    Sujatha
    Participant

    Hello freinds,

    I want to add monthly based subscription in my BussyPress website. I have a plan to collect money from people for read the news and articles in my website. Please help me to Add payment subscription in my buddypress website.

    Thanks.

    stokim2012
    Participant

    Hi!
    I would like to block loading buddypress custom css file in theme’s buddypress folder on every pages. I used this code in functions.php
    function conditional_buddypress_styles_scripts() {
    if ( function_exists( ‘is_buddypress’ ) ) {
    if ( ! is_buddypress() ) {
    wp_dequeue_style( ‘buddypress’ );}}

    However, theme folder/buddypress/buddypress.css file is still on load. How can I dequeue custom buddypress style sheet?
    I need your help. Thanks in advance.

    #307176
    gingerbooch
    Participant
    #307174
    Sujatha
    Participant

    Hi Friends,

    I want to add live chat between registered members in my website. Iam using BuddyPress. Please help me to add the live chat.

    Thank You

    urlemontea
    Participant

    Hello, I’m using BuddyPress on my website with multiple themes, I recently noticed that my users would be logged out when they were directed to certain pages, that’s not what I want to happen, please let me know if anyone knows how to solve this.
    This is the Link to that page

    harlestonemanuel
    Participant

    What are the key limitations/drawbacks to building a new social network on BuddyPress?

    harlestonemanuel
    Participant

    Is it possible to install a single instance of BuddyPress across multiple domains?

    #307157
    ds123
    Participant

    i found this thread searching for buddypress sharing ….Paul Gibbs i’m with you on how it needs some love this idea of making the activity posts more like twitter does

    so there are 2 out of 3 built into buddypress now ….1. comments on activity entry 2. favorite an activity entry (however the favorite item does not show on the users “feed” or “wall” / personal activity stream on their profile page

    so what about REPOST (same idea as a retweet) ?

    justvdv
    Participant

    Hi,

    My goal is to grab the buddypress private messaging part and include this in another page such that this can be used as a single messaging feature without the complete buddypress profile.

    I am somewhat familiar with customizations of templates and usage of hooks in wordpress.
    My wordpress version is 5.2.2 and my buddypress version is 4.4.0.

    So when digging into buddypress I found the bp_templates folder and figured out that to for example load the message composition part we should use bp_get_template_part( 'members/single/messages/compose' );. This included the part but without any styling while the stylesheet of buddypress does seem to be included when looking into the developer tools of Chrome.

    Therefore my question is: How to include the complete private messaging part on another page with the styling included?

    Kind regards,
    Justvdv

    #307153
    TonyPrower
    Participant

    Here is my profile
    https://nature-photo-travel.co.uk/members/radar/

    I am admin and I chose “radar’ to add an extra level of security. hat security is compromised because my ‘hard-to-guess’ admin name is displayed on my public profile and even in the url.

    What a gift for the hackers!!

    I have ‘Tony Prower’ set as my display name in my wordpress profile. How do I get that to reflect in my buddypress profile?

    develhem
    Participant

    Hi,
    i use your plugin since a long time but now, i have a big problem.
    When i want to access to profil page (/members/username) or to the user drive (/members/username/drive), i’am disconnected automatically….

    I search yesterday but i don’t find issues to fix this bug, so i write you to know if you have an idea about this.

    #307146
    studiocrafted
    Participant

    Inherently with the default functionality of BuddyPress, page scroll or not. The comment reply will always appear under the current nest.

Viewing 25 results - 5,676 through 5,700 (of 94,540 total)
Skip to toolbar