Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 151 through 175 (of 69,209 total)
  • Author
    Search Results
  • #336507
    satisfactionstate
    Participant

    Hello! Could you please help me with the issue if my custom theme. When I switch on it – I can’t create a group, because the is no any buttons ect. I use the simplest architecture at my theme: functions, page, archive, single, home, index, header, footer. And with the url mysite/groups/create/step/group-details/ the is a template of a page.php: header + footer + <?php the_content();?> There is only The title. When I switch to anoter theme – all the group setting appears when I try to create a group. I understand that there is a problem with my theme. Are there any additional requirements to use simplest custom theme with BuddyPress? Are there ane specific code or something else that I’ve missed? Thank you!

    #336506
    fliohmy
    Participant

    Hello BuddyPress people,

    I’m just here to see if I can get a project going that I didn’t build myself, so please forgive my ignorance when it comes to BuddyPress and its inner workings.

    When I install buddypress via composer, it creates a “cli” folder next to the various “bp_*” folders in plugins/buddypress/.

    In buddypress/cli is a file called command.php. This file extends WP_CLI\CommandWithDBObject which no longer is part of WP_CLI, which in turn throws a fatal error.

    To be fair, I have no idea if this /cli/ folder is actually part of BuddyPress or some hack the previous developer added, because the folder is not there when I clone BuddyPress via git.

    If this is indeed the previous developer playing tricks on me then I apoligze for taking up your time.

    All the best,
    Fredrik

    #336505
    alexanderwbell
    Participant

    buddypress already has a similar feature, it’s called bp friends, I can’t remember if it’ a standalone plugin, or if it’s its own plugin, but I also use that on my site. With the friends plugin, you can friend, and the user has to accept the friend request (which friends them back). This plugin also has support I believe with rtmedia’s privacy levels where you can friend people and then set post privacy levels so that only your friends can see the activity. (I might have made that functionality myself though, I can’t remember, I’ve written a lot of code). With the followers plugin, it’s just like regular followers where you would follow them and they don’t have to follow you back, and the user gets a following activity feed. that’s why I have both.

    #336499
    alexanderwbell
    Participant

    I setup a fork of the original github repo, I can’t guarantee it 100% works, especially like with following blogs and stuff like that as I haven’t tested that throughly. I also haven’t tested it with legacy themes. However, for regular following and for the following activity filters in bp_noveau etc… it should work.

    https://github.com/Alexanderwbell/buddypress-followers

    #336494

    Thanks for your feedback @alexanderwbell, i will be happy if you can share with me the working modified buddypress follow plugin thank you very much Boss.

    #336493
    alexanderwbell
    Participant

    Yea, so I use the same plugin and the plugin is old and doesn’t work with the latest versions of buddypress by default. I had to modify it. I believe the load text just in time is just a warning though, the fatal error I had was with the sql queries, it worked for me without fixing the warnings. When I get home, I might be able to share some code.

    vic2798
    Participant

    I am currently having a sitewide issue where logged in users with the “Subscriber” role cannot access Buddypress pages like “Groups” and “Member Directory”. Instead, they are being redirected to the Homepage. Administrators have access to the pages but I need subscribers to have access or else they can’t access these key interaction features of the Buddypress community. Does anyone know why this is happening or what code I need to adjust?

    TKServer
    Participant

    I’ve got a bug the last few weeks it seems. When a private message is sent from one user to another, a “random” 3rd user ends up attached to the message. Is this a known BuddyPress bug?

    jenniferwatson
    Participant

    Hi,

    I am facing an issue with the media upload option in BuddyPress on my Community Guidelines page. When I try to upload a media file:
    The “Choose File” option appears, and the file successfully uploads in the interface.
    However, the file suddenly disappears, and I get a red error message saying, “Please choose some content to post.”

    Steps I’ve Taken to Fix It:

      Tried using custom code to resolve the issue—no success.
      Cleared cache from the hosting panel and WordPress dashboard.
      Checked for plugin conflicts by disabling all other plugins, but the issue still persists.
      Tested on different themes—the issue remains.

    Moreover strange thing is, Media upload works fine if I go to My Profile → Media and post on my feed.
    The issue only happens inside Groups—media upload is not working on group posts.
    I have also reviewed some BuddyPress articles where users reported the same issue, but I didn’t find a resolution.
    i.e, https://buddypress.org/support/topic/cant-upload-media-from-sitewide-activity-stream/

    As I am handling a community website, I urgently need this feature to work.
    Please provide guidance on how to fix this issue.

    My Site’s URL: edit: link removed
    Thank you!

    sheepdontswim
    Participant

    I’m reviving the old forums on my website, which previously used buddypress and bbpress happily. I updated things a bit, adding groups with their own forums.

    Unfortunately, now when buddypress is activated the forums are mapping incorrectly. For example, with buddypress disabled, the forum correctly links to:https://www.thecaregiverspace.org/connect/forum/general-discussion/paid-perspective/

    When buddypress is enabled, the forum links to a group forum instead: https://www.thecaregiverspace.org/connect/forum/general-discussion/baby-boom/

    Going to the correct forum url directly results in being redirected to the incorrect group forum.

    Not all of the forums are mapping to a random group, only a few are.

    Any suggestions for how to correct this? Thanks!

    #336404
    arisudi
    Participant

    How can this be done for BuddyPress?

    teslavolt
    Participant

    Found this to try and override the has_activities via a filter https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/

    teslavolt
    Participant

    Thanks! adding the bp_enqueue_assets_in_bp_pages_only allowed buddypress scripts to be loaded outside of the buddypress generated pages.

    For some reason, the ‘bp_has_activities’ in my activity loop no longer respects the array I pass in. Instead of just displaying the one bp_activity_id and the comments, it’s pulling all activities.

    
     $prj_activity_args = array("include"=>$bp_activity_id);
    <div class="activity" data-bp-single="<?php echo $bp_activity_id; ?>">
    if ( bp_has_activities( $prj_activity_args ) ) : ?>
            <?php if ( empty( $_POST['page'] ) || 1 === (int) $_POST['page'] ) :?>
                <div id="activity-stream" class="activity-list item-list bp-list" data-bp-list="activity">
                    <ul class="activity-list item-list bp-list">
            <?php endif; ?>
            <?php
                while ( bp_activities() ) :
                    bp_the_activity();
            ?>
                <?php bp_get_template_part( 'activity/entry' );?>
            <?php endwhile; ?>
            <?php if ( empty( $_POST['page'] ) || 1 === (int) $_POST['page'] ) : ?>
                    </ul> <!-- .activity-list -->
                </div> <!-- #activity-stream -->
            <?php endif; ?>
        <?php else : ?>
            <?php bp_nouveau_user_feedback( 'activity-loop-none' ); ?>
        <?php endif; ?>
        <?php// bp_nouveau_after_loop(); ?>
        </div> <!--#comments-->
    </div> <!--#buddypress-->
    
    
    teslavolt
    Participant

    I checked on the my buddypress’s /activity stream page and I noticed in the page source, there’s something defined:

    
    <script id="bp-nouveau-js-extra">
    var BP_Nouveau = {"ajaxurl":"https:\/\/mysite.com\/wp-admin\/admin-ajax.php","confirm":"Are you sure?","show_x_comments":"Show all %d comments","unsaved_changes":"Your profile has unsaved changes. If you leave the page, the changes will be lost.","object_nav_parent":"#buddypress","objects":{"0":"activity","1":"members","3":"blogs","4":"xprofile","5":"friends","7":"settings","8":"notifications"},"nonces":{"activity":"945da9770f","members":"3c2b470980","blogs":"0a006184ba","xprofile":"56da19c4b1","friends":"a437ee2b51","settings":"ce8e7d03fe","notifications":"ac5a574aa8"},"newest":"Load Newest","pulse":"15","activity":{"params":{"user_id":20,"object":"user","backcompat":{"before_post_form":false,"post_form_options":false},"post_nonce":"a7c93b3f4e","avatar_url":"\/\/www.gravatar.com\/avatar\/c4568b23422db4e779e93c73130989dd?s=50&r=g&d=mm","avatar_width":50,"avatar_height":50,"user_domain":"https:\/\/mysite.com\/members\/pen\/","avatar_alt":"Profile photo of Pen","objects":{"profile":{"text":"Post in: Profile","autocomplete_placeholder":"","priority":5}}},"strings":{"whatsnewPlaceholder":"What's new, Pen?","whatsnewLabel":"Post what's new","whatsnewpostinLabel":"Post in","postUpdateButton":"Post Update","cancelButton":"Cancel"}}};
    

    I can’t find what creates this script / variable.

    teslavolt
    Participant

    I have a custom template page that I’ve added specific bp-activities and its comments (pulled some code from the activity-loop).

    In Buddypress v11.4.3, everything was working fine, the activity displays and comments + reply functionality works – click on a reply and the .ac-form moves to selected reply/comment and it nests it as expected.

    Since Buddypress 12, replies no longer work. I think it’s because the Buddypress scripts no longer load on NON-buddypress pages. I tried enqueueing Buddypress scripts myself using a function:

     function load_bp_activity_scripts(){
        wp_register_script("bpnouveau", "/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-nouveau.js");
        wp_register_script("bpactivity", "/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-activity.js");
        wp_register_script("bpactivitypost", "/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/buddypress-activity-post-form.min.js");
        wp_register_script("bpmentions", "/wp-content/plugins/buddypress/bp-activity/js/mentions.min.js");
        wp_register_script("corecaret", "/wp-content/plugins/buddypress/bp-core/js/vendor/jquery.caret.min.js");
        wp_register_script("coreatwho", "/wp-content/plugins/buddypress/bp-core/js/vendor/jquery.atwho.min.js");
        wp_enqueue_script("bpnouveau");
        wp_enqueue_script("bpactivity");
        wp_enqueue_script("bpactivitypost");
        wp_enqueue_script("bpmentions");
        wp_enqueue_script("corecaret");
        wp_enqueue_script("coreatwho");
    }
    add_action("load_bp_activity", "load_bp_activity_scripts");
    function load_bp_activity(){ do_action( 'load_bp_activity' );}

    but just loading the scripts is not enough. When I replaced buddypress-activity.js with my own version to debug, I noticed that BP_Nouveau returns as ‘undefined’ and so none of the script functionality would run.

    I’m probably missing something really simple but how can I load Buddypress core scripts or styles in my own custom wordpress template?

    #336352
    emaralive
    Moderator

    @asmaajaved – out of curiosity, I’m interested in knowing the value that is set for the BP_GROUPS_DEFAULT_EXTENSION constant. This information can be found within the Site Health Info tab, e.g., wp-admin/site-health.php?tab=debug, scroll down to the last panel (BuddyPress Constants) then open the panel and find the aforementioned constant.

    This might provide an additional clue as to what may be occurring.

    #336348
    yatesa01
    Participant

    This is still an issue a year later. I figured out how to submit a ticket: https://buddypress.trac.wordpress.org/ticket/9268#ticket

    #336330
    emaralive
    Moderator

    Let’s not do that, I would prefer not to get involved in that way.

    It looks like after group creation, there should be a 302 redirect to the newly created group page. Since you are able to delete groups, I assume you are doing so from wp-admin > groups page.

    Notwithstanding the 302 redirect after group creation. Since the groups appear to be created, you should be able to access any of the created groups directly, e.g.:

    https:example.com/groups/new-group

    I’m not sure if this is actually a BuddyPress issue.

    I’ll ask around and see if anyone else on the team has heard of this.

    #336322
    emaralive
    Moderator

    Hi @asmaajaved,

    I’m not sure if this an edge case, so more information is required, e.g.:

    1. WordPress version
    2. WordPress permalink setting(plain or pretty URLs)
    3. WordPress theme in use
    4. BuddyPress version
    5. BuddyPress template pack in use
    6. What does your error log reveal?

    It would also help to have a screenshot of:

    the single groups pages show up empty

    #336321
    emaralive
    Moderator

    Hi,

    The BuddyPress Featured Members plugin appears to be authored by BuddyDev. Have you tried their support forum?

    BuddyDev Support – BuddyDev site

    Or

    [BuddyPress Featured Members] Support – WordPress Forum

    #336235
    emaralive
    Moderator

    Unfortunately, you’ve applied a band-aid at the Theme level. The next Theme update will remove your band-aid and you will have to apply it again, given the approach you’ve taken.

    The bp_loggedin_user_domain( ) function should have returned a URL with a trailing slash, for example:

    http://www.url.com/members/username/

    Which is why the Theme has it written as:

    bp_loggedin_user_domain() . $bp->notifications->slug

    Something is causing the trailing slash to be missing, solving for this will be the fix. Maybe a plugin or some custom code is filtering the return value, such that is stripping the trailing slash.

    Assuming you are using BuddyPress 14.3.3, see the following URL for the source code:

    bp_loggedin_user_domain()

    #336233
    cactuscat
    Participant

    Alright, guess I just needed to eat.

    template-parts> header> buddypress-profile.php

    Under //User notifications, first <a class… add a ‘/’ between user_domain and notifications like so:

    bp_loggedin_user_domain( ) . '/' . $bp->notifications->slug )

    Forced the slash and now all is good.

    #336219
    videowhisper
    Participant

    You could take a look at this free plugin we’re developing: FansPaysite MicroPayments https://wordpress.org/plugins/paid-membership/ .

    Flexible Monetization: Offer creator subscriptions, pay-per-view content, and memberships tailored to various creator needs.

    Direct Content Sales: Creators can directly sell access to posts, videos, downloads, live video streams, enhancing revenue opportunities.

    Versatile Payment Integration: Supports all major gateways with WooCommerce, including PayPal, Stripe, CCBill for broad accessibility.

    Reduced Transaction Fees: Streamline finances with microtransactions that cut down on costs.

    Dynamic Wallet System: Enables secure, in-site transactions with internal credits and support for other popular wallets like TeraWallet and MyCred.

    Enhanced User Engagement: Features like crowdfunding and donations add interactive elements to content monetization.

    Comprehensive Admin Control: Manage access, monitor transactions, and customize content offerings with ease.

    BuddyPress Integration: Enhances community features, allowing for real-time updates and user interactions within the platform.

    scotnet
    Participant

    Hello
    I look after the following website as a volunteer:

    About

    A function that has been working perfectly well for years has just stopped working, and I think it is an issue with my Buddypress Featured Members plugin (version 1.1.2).
    My WordPress version is 6.7.1 and my main Buddpress plugin version is 14.3.3.

    This is what is happening: when I try and edit the committee page, I am no longer able to update the committee members. I click on the block featuring the member, click on the pencil to update the member, then I get a dialogue box saying “Buddypress Member, Start typing the name of the member you want to feature into this post’. I type the first few letters, and after a long delay another box appears with a list of members. However, the members that appear are the same everytime, regardless of the letters I type, and do not include anyone whose name starts with the letters I have typed in the dialogue box. Therefore, I cannot change the member.

    Any help would be much appreciated.
    Many thanks
    Lisa

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