Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 251 through 275 (of 73,981 total)
  • Author
    Search Results
  • #335634
    thinlizzie
    Participant

    I just wanted to thank @dreampixel for the support they are giving here on the site. It’s very refreshing. Usually no help whatsoever is offered by any of the people behind Buddypress. None.

    #335633
    sootsnoot
    Participant

    Well, yes, it exists in the sense that you can enter the url, and see the desired content. The questioon is how to make the page prominent. If I create a page, then I can put a link on it to go to the /members url. But I wanted to create a page (listed among the pages on my site) that would display that content. I actually tried using the Insert Page plugin, but I couldn’t get it to work for me. Guess I could dig into iframes a bit. It just seems strange that after all these years, BuddyPress doesn’t make it very easy for users to find the other members of a site to whom they could make friends or invite to join a group…

    #335630
    GyziieDK
    Participant

    Also please note that the name field marked in the Users > Profile Fields with “(Primary)” IS the display name itself. This should be the field users use upon registration of their user – and this is also the field the BuddyPress Member Directory uses to sort content Alphabetical.

    #335629
    GyziieDK
    Participant

    Hello again 🙂

    This might start to make sense then!

    First, when you translate something within the code itself (not using a translation plugin and po/mo file) it will for the most part be overridden whenever you update your WordPress / plugins that are translated. So, this might be why it doesn’t work now after the update.

    I personally use a combination of LocoTranslate and TranslatePress. This is because BuddyPress activity is updated the way it is and for that reason LocoTranslate itself is not able to translate the dynamic content (like when activity updates – without the page doing so) – this TranslatePress supports.

    So, for the BuddyPress content that can’t be translated correctly using LocoTranslate, I use the TranslatePress for those. Both plugins are free to use, and it doesn’t require you to purchase any expensive addons.

    It’s important that you pick the right placement for your translation-files (custom, author, system). If they’re not in the right place the translation might not show up on the front-end. Also make sure you setup the settings within the LocoTranslate plugin not to override your translated files upon updating WordPress: Loco Translate > Settings > File system access > Modification of installed files & Editing of POT (template) files must be set to Disallow.

    For the display name, this should be the default value it sorts by. Mine by default sorts by display name. When you go to Users > Profile Fields – you can edit the different settings from within there with the names and what is mandatory/not mandatory.

    For the sorting part (or other features in the future) if it still causes issues, maybe a snippet code using a plugin like WPCode Lite might be a better solution rather than going into the code and edit it from there. In this way it will not get affected in most cases when you update WordPress, plugins and theme.

    Maybe some of this can help you – if not – then feel free to keep me updated. 🙂

    #335628
    sootsnoot
    Participant

    WP 6.6.2, BP 14.2.1, Divi theme.

    I added a bunch of WordPress users to my site from a csv file using the Import and export users and customers plugin. Worked well. But those users couldn’t figure out how to make friend requests, since they couldn’t “see” the other users that they could ask. After some fumbling through this forum and googling, I came across the “/members” slug. I seemed like exactly what I needed, a list of members with a button to send a friend request to each one. The only problem was that it didn’t show all the users. More ressearch found this post from 10 years ago. Seems the issue was/is that it only shows those users who have had some BuddyPress activity recorded. But since these were mostly new users, most had no activity. So I wrote a little bp-custom.php file containing:

    function make_all_users_active() {
        $users = get_users();
        // repete_log(print_r($users, true), __FILE__, __LINE__);
        foreach($users as $user) {
            if (strlen(bp_get_user_last_activity($user->ID)) == 0) {
                // repete_log(sprintf("bp_update_user_last_activity(%s)", $user->ID), __FILE__, __LINE__);
                echo $user->ID . "<br>";
                bp_update_user_last_activity($user->ID);
            }
        }
    }
    add_action ('wp_loaded', 'make_all_users_active');
    

    This solved the problem of not showing all the other BuddyPress members, but as far as I can tell, I’ve now got to tell all the users that if they’re interested in making friend connections, they have to go to the address bar, and type /members right after the domain name. That seems ridiculous! I guess I could add a page containing a link to that slug that they could click, but it would be nicer if I could make a page they could find as one of the site’s pages that would display the information from that slug, without having to click a link. Better still would be to be able to customize the BuddyPress drop-down menu to add an item for “All Members” that would display the slug’s contents…

    #335626
    wpuser
    Participant

    On second thought… this is within the Buddypress coding, so something that must have changed for WordPress 6.7 is not interacting correclty anymore with Buddypress.

    The “Alphabetical” sorting of the user list is sorting on the “Name” base field of bp_xprofile_data table (field 1). This field I had renamed to “Naam” (which is Dutch for Name). This is hardcoded in the database and not avaibable as translation string. After switching back to “Name”, everything worked again. Before, I was allowed to use switch the name of the field. How do you translate this? I now have used a filter function in my functions.php, but it shouldn’t be necessary.

    Furthermore I discovered the memberlist is sorting on that particular “Name” field, instead of the “display name” I want to use. Any idea’s how to get the userlist to sort on display name instead of “Name” ? Why do we have a mandatory “Name” field anyway?

    pro104
    Participant

    Using WordPress 6.7
    Installed as a root directory
    Wordpress is working fine
    Using BuddyPress 14.2.1
    No other BuddyPress plugins installed
    Using Themify theme Peak, no mods
    No custom functions
    Using bbPress 2.6.11
    Hosted by ‘Omnipresents’ is in association with LiquidNet Ltd.
    Server running Rocky Linux 8
    I have not overloaded any BuddyPress template files
    Template Pack BuddyPress Nouveau

    I am trying to set up a forum. Everything is working so far except for recent post, comments, archives, categories are not appearing. Ive tried looking through the forum and looking around in Buddypress with no luck. Any ideas?

    #335620
    wpuser
    Participant

    I managed to locate the issue. After the wordpress update, it was not allowing my translations for the xprofile fields anymore. For some reason it has to be English now, it is no longer allowing it to be Dutch. I’ll flag this with the WordPress development team.

    I’ll close the topic as the issue is likely not because of Buddypress but because of WordPress.

    How can I resolve./close this topic?

    miednr
    Participant

    Hello,

    I am using WordPress and BuddyPress in latest version – in a multisite installation.

    My problem is: WordPress post updates do not show in activity stream in none of my sites. They even are not visible in activity database in the dashboard. Other status updates do work fine. I surely enabled the option to have WordPress core updates in the settings.

    I tried disabling all other plugins. Issue still persists.

    Does BuddyPress has a problem with multisite? Do you have any idea?

    Thanks!

    #335616
    GyziieDK
    Participant

    Sounds like compatibility issue within the theme then. Have you tried it with a BuddyPress supported theme?

    smelendez
    Participant

    Hi, I am using Buddypress v14.2.1 together with BuddyPress Xprofile Custom Field Types v1.2.7 to be able to use select2 with a Multi Select Box field in user profiles.

    It seems that select2 works correctly as I get a text field in which when typing, the autocomplete function acts and recommends me some option from my list. The problem is that when I select an option, instead of being added in tag format and I can continue typing in the text field to add more options from the list, a tag containing all the options from my list is added and the text field disappears, so I can not continue adding option from my list.

    Here is my multi select box field configured to use select2 as you can see in this picture in the top right corner:
    Multi Select field

    As you can see this new picture, if I access the field and test the autocomplete filter, it seems to work correctly. But when I select an option, this happens and I can not do anything, I can not write to add new options or anything:
    select2 problem

    What could be happening? Thanks in advance.

    #335609
    GyziieDK
    Participant

    Please do me a favor, go to your latest buddypress and wordpress version and try to use the userlist/friendlist, I am 1000% sure you are having the same issues.

    Sorry, but works fine for me – even with latest update to BuddyPress Version 14.2.1.

    I even run a pretty complex site with a lot of software that needs to be compatible – including custom code setups and so on. Still works 🙂

    #335608
    GyziieDK
    Participant

    Hello again 🙂

    The user you’re setting up, is this a legit setup with a mail (where you can activate the account)?. If not, then maybe give this a try. Normally users must activate their accounts from a mail they receive upon registration before they’re visible on the directory.

    Also, what settings have you setup under the following:
    Settings > BuddyPress > Options

    This might make it easier for me to see if anything in there is the culprit. 🙂

    #335607
    wpuser
    Participant

    I installed a blank wordpress on a test environment, clean sheet.
    I installed a clean, blank install of buddypress.
    I use the lastest update of twenty seven theme.

    I have only 1 user, which is me (admin) of the test site, and I show up.
    I added a second user, via the admin, that did not show up.
    I added this user as a friend, this user show up in “my friends” but not in userlist.
    Than I did database repair (fix total members) and fix friendship total.
    Than the second user show up.

    But when trying to sort on “Alphabetical”, I get “no members found”

    All my plugins have been de-activated except for Buddypress.

    I tell you, something is wrong. Please believe me.

    This is the screenshot: https://ibb.co/W6drH8p

    I am not using caching of any kind. It is a clean install. No plugins or other things running. Only my theme and buddypress.

    Please do me a favor, go to your latest buddypress and wordpress version and try to use the userlist/friendlist, I am 1000% sure you are having the same issues.

    #335605
    Philippe Roussel
    Participant

    Hi,

    WordPress version: 6.7
    BuddyPress version: 14.2.1
    https://onehomeplanet.com
    The issue still happens with Twenty Twenty-Five theme

    Though BP says that changes are saved, they are only saved under BP Edit tab and in WordPress user profile, but not under BP View tab (which is the content visitors will see…).

    Thanks for your help,

    Philippe

    Upen Singh
    Participant

    Hi
    Verify BuddyPress Compatibility with Your Theme or try to other theme Like BuddyX Free

    #335601
    Upen Singh
    Participant

    Hi,
    This plugin will add an extended feature to BuddyPress. It will use Shortcode for Listing Activity Streams, Members directory, and Groups directory on any post/page within the website.

    Wbcom Designs – Shortcodes & Elementor Widgets For BuddyPress

    Try FREE BuddyPress Theme: BuddyX – Offers unique layouts with clean code and easy-to-customize options, giving you a whole new way to visualize BuddyPress.

    BuddyX

    #335600
    kaseroskabrones
    Participant

    Hi! I want to customize how my buddypress looks like, but I can’t find any plugin. The only one that is available is the buddybuilder for elementor.

    Is there any plugin for spectra or astra themes? Thank you.

    #335598
    ejoopasco
    Participant

    I stumbled upon my old threat and I want to clarify in case it helps someone:

    The problem was in our Network. As soon as 8 people logged in from inside our institutes wlan, the problems occured.

    People from outside our network could still easily log in. So no Buddypress problem at all.

    talhaarif05
    Participant

    I’m encountering an issue with BuddyPress default email notifications on my site. Only two types of emails are being triggered: private messages and friend requests. However, other default emails, such as group invitations and account activations, comments etc, are not being sent. Could you please assist in identifying the cause of this issue or guide me on troubleshooting steps?

    wpuser
    Participant

    Hi there,

    My buddypress is updated to the latest verison. Today there was a major WordPress release (6.7) but after upgrading, my buddypress member list, friendships and friendlist stops working. Seems Buddypress needs an update as well, to work with the newest WordPress.
    Can you please update the plugin to fit with the latest Wordspress 6.7 as soon as possible?
    Thank you !!

    #335586
    emaralive
    Moderator

    Hi @impartialintel

    This question should be asked in the previous topic you created -> Allowing only $content with urls to be posted(Error.

    The reason is to provide continuity and context to your original request since this topic is directly related. As it stands, this topic is without context and someone would have to connect the dots between this topic and your previous indicated topic in order to understand with specificity and provide some reasonable response.

    So, if I can get you to post what you posted above in the indicated topic, we can continue the conversation and get you closer to your desired goal.

    glenphillips33
    Participant

    Hi BuddyPress Community,

    I’m using BuddyPress to create a community on my website, but I’m having trouble with user profile pages not displaying correctly. When members view their profile, the layout is broken, and certain elements (like the profile picture and activity feed) aren’t showing up as they should.

    Here’s what I’ve tried so far:

    Checked for conflicts with my WordPress theme (using a BuddyPress-compatible theme).
    Disabled other plugins to see if they’re causing issues, but the problem persists.
    Cleared the site cache and checked the site in multiple browsers, but no luck.
    Could there be a setting in BuddyPress I’m missing, or does anyone have tips for troubleshooting profile page display issues? I’d appreciate any guidance on how to get these pages to look as intended!

    Thanks in advance!

    thinlizzie
    Participant

    Assuming you have a Buddypress profile field for your users bio (in this case called ‘Description’), this will work.

    
    function show_description ($atts) {
    
    $user = get_user_by( 'login' , $atts['username'] );
    	
    $args = array(
         'field'   => 'Description',
         'user_id' => $user->ID
    );
    
    return bp_get_profile_field_data( $args );
    
    }
    
    add_shortcode( 'showdescription' , 'show_description' );
    
    #335571
    kirstendrennan
    Participant

    This issue may occur due to compatibility changes in the update from version 11.4.0 to 12.0, where widgets or widget areas could be removed or reset. To fix this, first ensure that any theme or plugin you’re using, especially BuddyPress or similar, is updated to the latest version compatible with 12.0. After updating, try re-adding widgets manually through Appearance > Widgets or using the Customizer. You may also consider testing in a staging environment before updating to identify any potential conflicts. Source: Offical Fintechzoom.

Viewing 25 results - 251 through 275 (of 73,981 total)
Skip to toolbar