Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 501 through 525 (of 73,985 total)
  • Author
    Search Results
  • #334580
    damdam38
    Participant

    Hello,

    I have the same problem, still no solution from BuddyPress or Elementor?
    How can I disable the feeds please?

    ——————————————

    Bonjour,

    J’ai le même problème, toujours pas de solutions du côté de BuddyPress ou Elementor?

    @robertellisit
    comment désactiver les flux s’il vous plaît?

    #334571
    terryfrum
    Participant

    Wordpress Version 6.5.5
    BuddyPress 12.5.1

    Testing registration and the attached email doesn’t have a Group Name. THe Group Name doesn’t populate. Can anyone tell me where this email comes from and how I fix this or stop this one from sending? Thanks.

    _______. has invited you to join the group: “{{group.name}}”.

    Go here to accept your invitation or visit the group to learn more

    sam0090
    Participant

    You can use the BuddyPress Anonymous Plugin to allow users to select different avatars and nicknames for public groups, ensuring anonymity. This plugin lets users upload new avatars or choose from a provided list, and set a unique nickname for group participation.

    briebree
    Participant

    Hello,
    on Buddypress site, the users can set their avatar from the community profile setting, and that will appear throughout the site inside the group everywhere.

    How can the admin allow users to use a different avatar and name when they join a public group(anonymous feature)?

    what I mean is which plugin or tool can allow anyone to select another avatar and nickname for hiding themself in the group before they join a public group? the other avatar can be selected from their device or there is a feature inside the groups to provide an avatar list for setting avatar and nickname in this group.

    thank you

    lunarca
    Participant

    Hey there!

    I have a quite simple dilemma but can’t quite get it right. I am trying to set up the extended profile for users but I’d like for some of the basic profile fields from a standard WordPress installation to show and be edited through it.

    Especifically I’d like to have the first name, last name, url and user description, that are available trough the wp-admin/profile.php dashboard page, to be editable through the <site>/members/<user nicename>/profile/edit/group/1/ page.

    How can I do that? Thanks a lot!

    PS. I asked ChatGPT and got this answer that throws a Fatal error:

    function sync_bp_wp_profile_fields($user_id) {
        if (!bp_is_active('xprofile')) {
            return;
        }
    
        // Get BuddyPress profile field IDs (replace with your actual field IDs)
        $bp_first_name_id = 1; // Example field ID for First Name
        $bp_last_name_id = 2;  // Example field ID for Last Name
        $bp_url_id = 3;        // Example field ID for URL
        $bp_description_id = 4;// Example field ID for Description
    
        // Fetch BuddyPress profile data
        $first_name = xprofile_get_field_data($bp_first_name_id, $user_id);
        $last_name = xprofile_get_field_data($bp_last_name_id, $user_id);
        $url = xprofile_get_field_data($bp_url_id, $user_id);
        $description = xprofile_get_field_data($bp_description_id, $user_id);
    
        // Update WordPress user data
        wp_update_user([
            'ID' => $user_id,
            'first_name' => $first_name,
            'last_name' => $last_name,
            'user_url' => $url,
            'description' => $description,
        ]);
    }
    
    // Hook to update WordPress user data when BuddyPress profile is updated
    add_action('xprofile_updated_profile', 'sync_bp_wp_profile_fields', 10, 1);
    
    function sync_wp_bp_profile_fields($user_id) {
        if (!bp_is_active('xprofile')) {
            return;
        }
    
        // Get BuddyPress profile field IDs (replace with your actual field IDs)
        $bp_first_name_id = 1; // Example field ID for First Name
        $bp_last_name_id = 2;  // Example field ID for Last Name
        $bp_url_id = 3;        // Example field ID for URL
        $bp_description_id = 4;// Example field ID for Description
    
        // Fetch WordPress user data
        $user_info = get_userdata($user_id);
        $first_name = $user_info->first_name;
        $last_name = $user_info->last_name;
        $url = $user_info->user_url;
        $description = $user_info->description;
    
        // Update BuddyPress profile data
        xprofile_set_field_data($bp_first_name_id, $user_id, $first_name);
        xprofile_set_field_data($bp_last_name_id, $user_id, $last_name);
        xprofile_set_field_data($bp_url_id, $user_id, $url);
        xprofile_set_field_data($bp_description_id, $user_id, $description);
    }
    
    // Hook to update BuddyPress profile data when WordPress user data is updated
    add_action('profile_update', 'sync_wp_bp_profile_fields', 10, 1);
    add_action('user_register', 'sync_wp_bp_profile_fields', 10, 1);
    
    #334559
    WPabmm
    Participant

    Thank you , that worked for removing @username from the profile page.

    However, @username is still visible within the member’s posts (witin the user’s info box).


    @username
    is also visible within the url of the members profile.

    I just find buddypress disclosing members’ @username to be bad practice from a security point of view and denies members’ proper anonymity.

    #334553
    Mohammad Imran
    Participant

    @aboutm2 please paste this code snippet and check it as per your requirement.

    
    // Hide user name from BuddyPress profile
    function hide_user_name_from_profile() {
        if ( bp_is_active('xprofile') ) {
           ?>
    		<style>
    			.user-nicename{
    				display:none;
    			}
    		</style>
    	<?php
        }
    }
    add_action( 'wp', 'hide_user_name_from_profile');
    
    barricade
    Participant

    Hi guys,

    I’m new to using BuddyPress and have set up a course on my website using learnDash.

    When I go to Member Profile, the courses section just shows all the courses in a list format. I want to change the design to display them as Cards. Can you guide me through how to do this?

    Please assist.

    #334537

    In reply to: BuddyPress Emails

    Renato Alves
    Moderator

    Only if you want to. But it all depends where you have BuddyPress hosted. If you can get notifications when resetting a password, you can get send/recieve emails from BuddyPress too.

    #334536
    Renato Alves
    Moderator

    @hoopkonsulting As the error suggests, you are not sending a required field as part of the signup payload.

    See the documentation.

    #334534
    Koka boka
    Participant

    Hello @imath, I have reviewed everything once again and concluded that the problem was with the BuddyPress Default Data plugin that I use to add demo content. As you mentioned earlier, if you create a group manually, the join and leave buttons in that group work correctly. Meanwhile, groups created using the BuddyPress Default Data plugin give an error – “Error joining this group.” Also, I reverted to version 12.5.1, where all groups can be joined and left without problems. Therefore, I conclude that the BuddyPress Default Data plugin is not compatible with the latest version.

    #334532
    Mathieu Viet
    Moderator

    I also tested with Playground and it’s behaving as expected for me: clicking on the join button from the groups directory is adding the member to the group.

    Here’s the link to test:
    https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/buddypress/buddypress/master/tests/blueprints/14-0-0-RC1.json

    #334531
    Mathieu Viet
    Moderator

    Hi @koka777

    Thanks for your feedback. I just tested and wasn’t able to reproduce.

    Theme: Twenty Twenty-Four
    BP Template pack: Nouveau & Legacy (tested with both template packs)
    No other plugins than BuddyPress
    No custom code into wp-content/mu-plugins or wp-content/plugins/bp-custom.php

    I created a public group being logged as an Admin.
    I created a subscriber, logged in as this subscriber, went to the Groups directory, clicked on the join button.
    Result: the join button turned into a leave button and I was successfully added as a member of the group.
    I created a group being a subscriber, logged out then logged in as an Admin. I was also able to join a group from the Groups directory.

    Can you explain just like I did above, the steps you are doing to get the “Error joining this group.” message?

    Please make sure to deactivate any plugins, custom code, and activate a WordPress default theme like Twenty Twenty-Four.

    #334530
    Koka boka
    Participant

    Hello, thank you for your work. I just started testing BuddyPress 14.0.0-RC1 To immediately clarify and rule out any issues related to my theme, I checked everything again using the Twenty Twenty-Four theme with all third-party plugins disabled. In fact, in version 14.0.0-RC1, it is impossible to join groups from the group listing page; an error occurs – “Error joining this group.” From the group page, pressing the join button elicits no response.

    #334516

    Topic: user engagement

    in forum Ideas
    mehwishq
    Participant

    I’m developing a lifestyle community site using BuddyPress and looking for advice on customization. What are the best practices to match the aesthetic and functional needs of a lifestyle website? Any recommended plugins or tips for enhancing user engagement?

    Thanks!

    locker17
    Participant

    This used to work but not anymore. Now it throws errors/warnings.

    Suppressing rich text on xprofile text area

    Use wp bio field instead, its coming without the editor.

    #334502
    Mathieu Viet
    Moderator

    Hi @wackao

    Not yet, this is something we plan to work on: https://buddypress.trac.wordpress.org/ticket/1058

    kukiko
    Participant

    WP 6.5.5
    Buddypress 12.5.1

    If I go to this page: https://snvt.nl/professioneel-vertaler-of-tolk-inhuren/
    And I do a search.

    Then I put for instance a first name and a second name of an existing member in the search area, it will give no results.

    If I search for ‘Margriet’, I will get 1 result
    If I search for ‘Hunter’, I will get 1 result too.
    If I search for ‘Margriet Hunter’, I will get no results.

    What can I do to make the search Margriet OR Hunter?

    Thank you
    Saludo
    Rianne

    #334490
    vaquip
    Participant

    Hello, I was wondering if I have to use an outside email platform to send the email templates? Like mailjet or mailchimp.

    #334489
    vaquip
    Participant

    Hello, I was wondering do I have to use an outside platform to send the email templates? Like Mailjet or Mailchimp?

    #334488
    locker17
    Participant

    Anybody able to come up with a solution for this?

    The 8 year old solution of danpb in this post to remove the rich text editor throws errors:
    https://buddypress.org/support/topic/suppressing-rich-text-on-xprofile-text-area/#post-247640

    Can you dev guys fix this in your next update? Otherwise using this field opens the profile page for site crashers.

    #334487
    wackao
    Participant

    This is an app on buddypress you can try : https://wpappointify.com/tutorly/playground/app/

    locker17
    Participant

    I need to limit the entry of characters in a multiline textarea at the user profile settings (frontend). There are several questions about this in this forum with no real solution. Most of them are several years old.

    As far as I see is buddypress using the tinyMCe editor together with this field.
    On the tinyMCe blog they provide a solution to “How to limit characters and set a maxlength with TinyMCE”

    How can I use that in buddypress? I would need to use the wordcount plugin and edit the tini.init script.
    If I can’t implement that in buddypress is there any other solution for this issue?

    #334477
    darylozzz12
    Participant

    We have a site that have BuddyPress and we installed the BP Classic plugin to keep the changes we had to our site after the version 12 update. On each of our Members pages, there is a Profile option and on that Profile option it is linked to /profile, but if you click on it, it will redirect back to that current member page. Same goes to Profile > View, it also have /profile/public link but it will also redirect to the current page when clicked.

    This is a concern for us since we have Ahrefs audit on our sites and they highlighted this issue every time. Do we have an option to change it or maybe remove the links?

    Mohammad Imran
    Participant

    @shubhuofficial The settings tab is also not visible if the user is viewing another user’s profile. This is the default functionality in BuddyPress.
    https://prnt.sc/UKnd4pO7_sjY

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