Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 301 through 325 (of 94,540 total)
  • Author
    Search Results
  • #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-->
    
    
    #336374
    jamtpg23
    Participant

    I previously had BuddyPress installed, but needed to uninstall it as part of a repair process. I just reinstalled it and here is a screenshot of the BuddyPress Settings URLs tab.

    The directory slugs all have ” -2 ” appended to them. I’m assuming this is because BuddyPress was previously installed and then uninstalled, and there must be something leftover in the WordPress guts from the previous installation? I’m not a developer so my understanding of this is very vague.

    I tried to delete the -2 from the slug fields, but when I saved changes, they had reverted. -2 was back.

    Is there a way to fix this? I would prefer that the slugs don’t say -2, just so there’s a little more human readable in the URL bar. I do remember from the previous installation of Buddypress the slugs didn’t have the -2 appended. I would prefer that. Please and thanks for help!

    My WP version is 6.7.1. It’s GoDaddy managed WP. My PHP version is 8.2

    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?

    tuckeror
    Participant

    The following weird behavior is only happening in private or hidden groups, not public groups:

    If I go to a group page (again, private or hidden) and post an update, the feed then loads content from a different, public group instead of the current group. From what I can tell from my testing, this error only occurs when the “Activity auto-refresh” BuddyPress setting is checked. But, whether or not that is checked, the just-posted update is not displayed, not at the top of the feed or anywhere else, until after the page is refreshed. Also, refreshing the page corrects the issue of the wrong group activity. In other words, everything looks as it should only after refreshing the page.

    Any ideas?

    Thanks!

    #336365
    John N
    Participant

    Hi.

    I run a site with many authors and would really like a way to integrate the WordPress standard author page with a tab in Buddypress. Is this possible?

    I have searched a bit but have far too poor knowledge of PHP to do this myself. But a tab like Activities, Messages, Notifications and Friends, have a tab called “Posts” which shows a layout like the standard author page.

    I have tried to choose posts in the drop down menu in the activity feed but I find the feed to be far too messy and too much information with comments etc.

    Thanks in advance.

    #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

    #336339
    cjsallas
    Participant

    Hello,

    I’m hoping to get a solid answer on this before I install BuddyPress.

    I want to add BuddyPress to my website as a standalone feature. For example, I’d like for a member to have the option to navigate to the social media part of my sight; additionally, I’d like for the social media part of my site to have it’s own look and feel.

    Is this possible with BuddyPress?

    Thank you

    #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

    asmaajaved
    Participant

    I have created groups using buddypress but the single groups pages show up empty. I have tried disabling all the plugins. Refreshing permalinks nothing is working.

    #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

    davesumpter
    Participant

    Hi
    I am using wordpress 6.7.1 and buddypress 14.3.3.
    When a user logs in, there is a top left logo. if users clicks on this it currently goes to the home page/login. How do I override this so it goes to the users feed instead?

    #336146
    Cheryl
    Participant

    I’ve used BuddyPress before but recently reinstalled it and find that some pages, like register, are being created “on the fly” instead of having an actual page representing it, if that makes any sense.

    And I’m finding that the register page has the wrong page title and canonical URLs attached, which I can’t seem to fix from my SEO plugin and can’t do at the page level, as there’s no actual page.

    Is there a way to fix this or a way to go back to creating a “register” page again? I don’t see any settings like there used to be where you can select a page for registration, etc. It just gives you the permalink for the page.

    Thanks

    bgcdml
    Participant

    I am getting a Wordfence alert about a security vulnerability with Buddy Press. https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/buddypress/buddypress-1410-authenticated-subscriber-directory-traversal

    When I try to update it crashes the site. Any help on how to proceed would be greatly appreciated.

    fleurdor
    Participant

    Bonsoir, j’ai besoin d’aide s’il vous plait!
    J’utilise le serveur Xampp en local pour créer mon site de communauté en ligne avec WordPress version 6.7.1. Pour ce faire j’ai installé le plugin buddypress version 14.3.3 et le thème spacious version 1.9.8 avec la demo spacious company. J’ai également installé tous les plugins nécessaires à la demo spacious company à savoir social-icons, elementor et everest-forms.3.0.7.1. le plugin themegrill-demo-importer.1.9.9 est également installé. Cependant après configuration seuls les menus d’en-tête; principal et le menu de pied s’affichent. Le contenu de la page ne s’affiche pas, pourtant j’ai installé et activé le plugin Buddy default data pour ajouter des groupes, des membres, des sujets… sur les différentes pages dédiées à cet effet. Qu’est ce qui peut causer cela et comment le corriger s’il vous plait?

    #336121
    locker17
    Participant

    This is quite strage. I am having a similiar problem. When Elementor is activated it breaks all my buddypress links. But I found out that when switching to Hello theme the links work again.
    But since my design was made for Astra this is not a solution for me.

    So my links work if

    • either Elementor is disabled or
    • Hello theme when Elementor is activated.

    Any solutions for this? The hope to get help here dies last.

Viewing 25 results - 301 through 325 (of 94,540 total)
Skip to toolbar