Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,501 through 3,525 (of 73,058 total)
  • Author
    Search Results
  • #315120
    terranova23
    Participant

    I brought the issue to Divi’s support team first, and they had me put the site into safe mode (disable all plugins etc.) which makes all those console errors go away. But as soon as BuddyPress is enabled again the issue comes back. So it seems like some kind of interaction between BuddyPress and Divi causing it, that’s why I’m posting here.

    #315119
    VibeThemes
    Participant

    an image failed to load : https://prnt.sc/uza8gn
    also divi’s file custom_unified.js is triggering that error. Does not seem like a buddypress issue at all.

    VibeThemes
    Participant

    Save buddypress – components, it will ensure the directory structure required for saving photos is present.Also it will force buddypress to clear its cache.

    #315111
    shanebp
    Moderator

    To get the group ids for a member, use groups_get_user_groups.
    To get all the info about each group that a member belongs to, use bp_get_user_groups.
    Both functions are in buddypress\bp-groups\bp-groups-functions.php

    juanjvl12
    Participant

    buddypress tells me that the link to change the profile is missing

    Hi, I’m a buddypress user, and recently I’m having problems with the plugin for a project, because it doesn’t let me change the user’s profile picture, when I hit the profile tab to change the picture it tells me that the page is not found

    #315099
    RedTravelMaster
    Participant

    Hello Folks,

    I am setting up my first BuddyPress installation, and running into issues with creating new groups. I am apparently unable to upload a photo or cover image. No error messages, just – nothing happens.

    I’m running WordPress 5.5.1 running “Education Ready” theme. This BuddyPress site is going to be connected to TutoLMS Pro, for integration with a learning LMS.

    I appreciate any assistance

    Ron

    mllapan
    Participant
    function buddydev_inject_content_after_n_activities() {
        static $current_activity_index = 1;
     
        // change $n to the correct number of activities.
        $n = 7; // After how many activities you want to inject content.
     
        if ( $current_activity_index % $n === 0 ) {
            ?>
            <li id="advertbuddy" class='activity-item activity-ad-item activity-custom-entry'>
                <?php echo adrotate_ad(7); ?>
            </li>
            <?php
            // show the activity injected content.
        }
        // increment the current index.
        $current_activity_index ++;
     
    }
     
    add_action( 'bp_after_activity_entry', 'buddydev_inject_content_after_n_activities' );

    I tried using this, but when i click tabs on buddypress error availableWidth=0.
    Is there a function to use this code only on sitewide activity and to remove when tabs are changed, or to use any other similar function to inject ads into buddypress?

    #315066
    myshanai
    Participant

    Hi everyone!
    I am using BuddyPress Version 6.1.0 and set to Nouveau template.
    When I go to a group’s Home, then Customize > BuddyPress Nouveau > Group front page; and then enable custom front pages for groups and enable widget region for group homepages.
    Then go on to add widgets, for example add image or video. It will applies to all groups.

    How to make sure it applies to the selected group only?

    Is there a way to make home button goes to the group’s individual front page instead of a common front page for all groups?

    In other words, to make it a group’s home, and not the groups’ home.

    allmyhoney
    Participant

    Hi there, I am hoping someone can help. I have a buddypress website setup and I have the messaging addon working between members of the site. What I have noticed is that the images between 2 private members, if they share images between themselves are stored in the defauly media library which of course is not ideal from a privacy standpoint if all the images that are sent in private chats are appearing in the default media library area of WordPress.

    So I was wondering if there was a way for buddypress to store these images elsewhere other than the defauly media library of WordPress?

    Any help would be much appreciated.

    Thanks,
    James

    #315056
    shanebp
    Moderator

    This will show the profile nav menus for the current user:

    function check_nav_menus() {
    	$bp    = buddypress();
    	$menus = $bp->members->nav->get_item_nav();
    	var_dump($menus);
    }
    add_action( 'bp_ready', 'check_nav_menus' );
    #315041
    shanebp
    Moderator

    I’ve never done it, but this is what I’d try:
    In: buddypress\bp-groups\bp-groups-functions.php
    Find: function groups_send_membership_request
    And find the do_action near the end of that function.
    Use that hook to call a function that does what you need re Woo.
    After payment, make a call to function groups_accept_membership_request also in bp-groups-functions.php.

    #315037
    terranova23
    Participant

    Hi there,

    I re-saved the permalinks and BuddyPress components as recommended but I still see the error.

    The page loads fine, but if you look in the console (in the browser developer’s toolkit), there is an error that reads “undefined:1 GET https://www.themysticdreamacademy.com/undefined 404 (Not Found)”

    Hits to this undefined page are using up a lot of server resources so we want to figure out what resource is failing to load so we can fix it. And it seems to be an issue between BuddyPress and Divi.

    Hope this info helps, any other suggestions?

    Thanks,
    Rory

    #315032
    StaxWP
    Participant

    Hi, you should check out Buddybuilder plugin that allows you to build the templates for Buddypress components. Basically you drag and drop avatar widget, name widget, content and so on to build your members directory page or profile page.

    BuddyPress Builder for Elementor – BuddyBuilder

    #315022
    Technigal
    Participant

    Thanks so much for your reply.

    Thing is the client does not use Paid Memberships Pro and it seems it can’t be used as a standalone. So they don’t use payments on the site (I wish they did) and auto registration is turned off. I think the paid version of BuddyPress Members Pro will do the trick, but client is not forking out more money because of the rand/dollar exchange so that is a no go. So I was hoping for a code snippet.

    I found code that would block by username – but I can’t do it like that. Users gets updated from a daily import, and those who did not pay expires, but shouldn’t be removed. To automate that I thought subscriber could block them from using the rest of the site, but nothing blocks it on BuddyPress pages.

    Something else I’ve done before was to make use of the “Spam” function – I translated it to Expired – that way it was easy for some admins to just quickly expire a member and also to unexpire them – but in this case it checks against a daily import and I need to automate it.

    If at all there were a way to import users with a certain role for example, as a “spammer” which then would translate to expired, that would be great too.

    So I am fishing for ideas … hoping someone has something for me.

    Thanks again for your input.

    #315019
    Varun Dubey
    Participant
    Technigal
    Participant

    I am urgently looking for a snippet to prevent subscribers from viewing BuddyPress pages with a message. I hope someone can help me 🙂

    I tried various plugins, but it does not restrict the BuddyPress pages.

    #315008
    ImbaSynergy
    Participant

    There’s free chat plugin ImbaChat with BuddyPress integration. The Basic tariff plan is free and includes such featurea as: private chat between users, group chat and live chat (online support chat).

    ImbaChat

    #315005
    VibeThemes
    Participant

    Yes, use this plugin , works with all buddypress themes not just ours :

    Vibe bp custom member slug

    #315004
    VibeThemes
    Participant

    It has to be implemented in the template. You can adda default “message” subject. This is something which is outside the scope of buddypress.

    So we did implement something like this in our theme :

    There is a message box option which appears in the members page :
    https://prnt.sc/uugfa4
    and sending a message from here sends a default subject in the buddypress Messages section in the profile :
    https://prnt.sc/uugfv0

    #315002
    VibeThemes
    Participant

    Please share more details where exactly to check the “failed”. I checked your site and it loads fine. To avoid any inconsistent issues from appearing :

    a. Try re-saving permalinks at WP admin – Settings – Permalinks.
    b. Try re-saving Components at WP admin – Settings – BuddyPress – Components.

    #314997
    lanewaddell
    Participant

    Hey all,

    I was wondering how to add custom default fields to BuddyPress groups. I am trying to make it so they show up on every new group created and have to filled out by the admin. The two fields (name and description) are kind of weak / limiting.

    There were two plugins that did this (i.e. group_extras) but they don’t appear to work with the newest releases of wordpress and are no longer supported.

    terranova23
    Participant

    Hi there,

    I’m trying to help a client improve their website’s performance, and one of the main issues we’re looking into is a lot of calls to a page that ends in /undefined. Specifically I see an error in the console: “Failed to load resource: the server responded with a status of 404 (Not Found)” and next to this is the undefined URL. It doesn’t say exactly what resource fails to load.

    The site is https://www.themysticdreamacademy.com/ and it is using WP 5.5.1 and BuddyPress 6.3.0.

    We are using the Divi theme, BuddyPress, and a variety of other plugins. At first I thought it was a Divi issue as this only appears on pages with the Divi builder. However they advised me to test with the site in safe mode (disabling all plugins) and that removes the error. So it’s not a pure Divi issue. I narrowed it down to BuddyPress. If the site is running Divi as a theme and only BuddyPress is active, the error appears. If I switch to a basic WP theme, it goes away. So it appears to be some interaction between Divi and BuddyPress causing this issue.

    Naturally, Divi support tells me they can’t help me with any issues regarding external plugins. And I expect to hear the opposite here, that I can’t get support with external themes. But I am really hoping someone can provide some insight, or at least point me in the direction of what I should look for to solve this issue between BuddyPress and Divi.

    Thanks so much for any help anyone can provide!

    #314995
    Achille
    Participant

    Hello Best Team,

    I wanted to know if it’s possible to edit the private messaging so that the client doesn’t have to insert a subject before sending his message to his correspondent?
    The current version of the message subject is mandatory.

    http://prntscr.com/uuctsx

    WordPress version: 5.5.1
    BuddyPress version: 6.0.0

    Home

    #314994
    CloudedDottedMind
    Participant

    Ok @shanebp, except I’ve switched back to BuddyPress & switched off BuddyBoss and it still happens when I go to the equivalent Friendships > Requests section. I am asking here because this is a Buddypress functionality I have an issue with, and would really love help.

    If I figure it out, I will happily share my findings in case it helps someone else.

    #314992
    clickallco
    Participant

    I dont know any plugin which does it, but a solution could be to (if you know how to make templates and code basic stuff in wordpress) template it into the member types where the user would choose their layout themselves (control it how you’d like).

    So something like this would be the steps:

    1: Create your member types.

    2: Intersect the member types with your users’ Xprofiles.

    3: Start coding your templates to reflect the different dashboard you’d like them to have. You’d name the template front-member-type-yourmembertypename.php. So, for instance, if your member type was named “knights”, the template would be named front-member-type-knights.php

    4: upload your templates to buddypress/members/single/your-upload.php

    When the profile has chosen his or her member type, their members front page will reflect the template you’ve coded.

Viewing 25 results - 3,501 through 3,525 (of 73,058 total)
Skip to toolbar