Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,851 through 5,875 (of 94,540 total)
  • Author
    Search Results
  • #306440
    gingerbooch
    Participant

    Hi @Venutius,

    I finally found some time to make more tests on this issue.

    What I did :

    Install a fresh WordPress 5.1.1 on a test server.
    Install Buddypress 4.3.0.
    Create a user called “blue”.
    Create a user called “red”.
    Connect with “blue” and send a private message to “red” saying “Hello I am blue and I say blue”.
    Connect with “red” and send a private message to “blue” saying “Hello I am red and I say red”.
    Export Data for both “blue” and “red” users.

    Result :
    Export Data for user “blue” shows one message sent to recipient “red” with content : “Hello I am blue and I say blue”.
    Export Data for user “red” shows one message sent to recipient “blue” with content : “Hello I am blue and I say blue”.

    The result is the same on this fresh install. For both users in a thread, the Export Data only returns the private message data content wrote by the creator of the thread.

    For your information, I am running WordPress with French language. However I don’t think this can be linked to my issue.

    Can you try to reproduce this please ?
    I still think it is a bug.

    Thank you 🙂

    Anonymous User 13716511
    Inactive

    I need users to receive a notification when someone comments on their WORDPRESS BLOG POST, not their wall post.
    Is there a way to do this?
    It seems to me the buddypress notification is only for wall posts.

    #306433
    lwadz88
    Participant

    Hello Everyone,

    I hope all is well. Does anyone know of any plugin (paid or free) that improve the buddypress wal/posting experiencec. My theme right now (buddy) is great but it just has a simple text box with post button. I’d like to be able to change fonts, colors, insert links, pictures. Kind of like a facebook wall. I did some searching and the names of some plugins looked promising but none of them looked like they really did much after looking at it….Thanks!

    carlosfurniz
    Participant

    Greetings,

    I am working in a particular scenario with buddypress in which I require a function: if a member wants to send a customized form, like a contract form or agreement form to another user to sign in electronically and submit it to the originating member, is there a way or plugin, or any procedure to realize this?

    Thanks in advance

    lwadz88
    Participant

    Hello All,

    I hope all is well.I am pretty new to this and maybe there is already a way to do or a plugin I missing. May have been discussed before but I don’t even know what to call it.

    Is there a way to display a custom field from the buddypress profile under the username in the forum comments just like the default bbpress user roles (i.e. like a box containing a specified field from buddypress profile). For my purpose there is an important peice of profile information I’d like to have follow the user around whenever they make posts. Thanks!

    #306419
    Nahum
    Participant

    If the above is working with template files, why wouldn’t overwriting buddypress.css via /buddypress/bp-legacy/css be working like it would under /buddypress/css or /community/css?

    #306414
    Nahum
    Participant

    oops sorry I put in the wrong snip then I couldn’t edit…here’s what “seems” to be working for me.

    add_filter( 'bp_get_template_locations', 'my_template_pack_stack' );
    
    function my_template_pack_stack( $locations = array() ) {
    
    if( bp_get_theme_package_id()  === 'nouveau') {
    
    $locations[] = '/buddypress/bp-nouveau';
    
    } elseif( bp_get_theme_package_id()  === 'legacy') {
    
    $locations[] = '/buddypress/bp-legacy';
    
    }
    
      return $locations;
    }
    
    Nahum
    Participant

    I have had a fear of missing out ever since nouveau came out so I keep wanting to maintain both template packs for the same theme and I’ve still been hung up on this question: https://buddypress.org/support/topic/bp-nouveau-vs-bp-legacy/

    Is this the solution or on the right path?

    add_filter( 'bp_get_template_stack', 'my_template_pack_stack' );
    function my_template_pack_stack( $stacks = array() ) {
      $retval = array();
        if( bp_get_theme_package_id()  === 'nouveau') {
      $retval[] = '/buddypress/bp-nouveau';
    } elseif(bp_get_theme_package_id()  === 'legacy') {
       $retval[] = '/buddypress/bp-legacy';
    }
      foreach ($stacks as $stack) {
        $retval[] = $stack;
      }
      return $retval;
    }

    seems to work along with conditionally including custom stylesheet for respective template pack but just not sure about it

    #306411
    manuelguillegil
    Participant

    Hello! I have a project in WordPress with Buddypress and Matchme. My problem is when I try to configure Buddy Press, in the registration section, it does not appear on my Registration page or Activation, but if it shows me the other pages

    #306409
    Nahum
    Participant

    Is there anyone working on a starter pack in the way of underscores for more of a bare bones buddypress template pack. Is legacy meant to be the default template or nouveau?

    Are there 3rd party template packs(that aren’t themes) at all available?

    shanebp
    Moderator

    Just for reference… This works on a basic installation:

    // add order options to members loop
    function pp_member_order_options() {
    	?>
    	<option value="alphabetical-last"><?php _e( 'Alphabetical - Last Name', 'buddypress' ); ?></option>
    	<?php
    }
    add_action( 'bp_members_directory_order_options', 'pp_member_order_options' );
    
    function pp_members_loop_selection( $bp_user_query ) {
    
    	//  if Order By is set to alphabetical-last, sort by last name
    	if ( 'alphabetical-last' == $bp_user_query->query_vars['type'] ) {
    		$bp_user_query->uid_clauses['orderby'] = "ORDER BY substring_index(u.display_name, ' ', -1)";
    	   
    		// if they have variable last names like: Jones de Smith
    		//$bp_user_query->uid_clauses['orderby'] = "ORDER BY substring_index( substring_index(u.display_name, ' ', 2), ' ', -1 )";
    	}
    
    }
    add_action ( 'bp_pre_user_query', 'pp_members_loop_selection', 20 );

    The bp_pre_user_query hook is very powerful, but if anything else on your site is using it then the results can be confusing.

    warrencat
    Participant

    I’ve been trying for a while with no success to order the member directory by last name (surname) instead of first name. Extensive searching through the support forum and elsewhere would indicate that the following code modifications to a custom members-loop.php file in the theme folder and the theme functions.php file should accomplish this.

    My custom members-loop.php file contains:
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . '&populate_extras&type=alphabetical' . '&per_page=30' ) ) : ?>

    My theme functions.php file contains:

    function alphabetize_by_last_name( $bp_user_query ) {
        if ( 'alphabetical' == $bp_user_query->query_vars['type'] )
            $bp_user_query->uid_clauses['orderby'] = "ORDER BY substring_index(u.display_name, ' ', -1)";
    }
    add_action ( 'bp_pre_user_query', 'alphabetize_by_last_name' );

    Instead of sorting and displaying members by last name, it returns the message:

    Sorry, no members were found.

    If I change ‘u.display_name’ in the functions.php file code to ‘u.value’, all the members are listed in the default alphabetical sort order by first name. So, it appears that, for some reason, the code won’t output the expected results when ‘u.display_name’ is used.

    I’m posting here in the hopes that someone in this support community might have some additional guidance or suggestions that could help me figure this out.

    Here are a couple of the links I’ve previously referenced when trying to get this working:
    https://buddypress.org/support/topic/sort-user-list-by-last-name/
    https://buddypress.org/support/topic/sorting-by-last-name-goes-wrong-when-having-multiple-words-as-last-name/

    #306403
    shanebp
    Moderator

    When you post complaints without any details then you will get no support.
    BuddyPress is an open-source product.
    You should hire a developer to help you.

    #306401
    shanebp
    Moderator

    I cannot duplicate your issue with a WP theme like 2019.

    Here are some basic questions to help you narrow down the issue:

    Did BuddyBoss do their tests on your site or theirs ?

    Are you trying to delete from the front-end or the back-end?
    What kind of group is it – public, private, hidden ?

    Which BP template are you using?

    Did you check your error logs ?

    Have you try deactivating other plugins?

    If you can list the steps to create the issue – be specific and include screenshots – you could open a ticket here. Be sure to reference this thread.

    warrencat
    Participant

    For Buddypress user profiles, we create user profiles in WordPress by syncing with Active Directory. This creates new WP user profiles and also syncs data over to BP XProfile fields.

    In configuring this process, I’ve learned that BP Visibility rules for XProfile fields are not set when user profiles are created via import from Active Directory; they are only set when an existing profile is manually edited and updated. Is there a way to fix or work around this, to get the Field Visibility rules applied to user profiles regardless of when/how the profiles are created (via import, etc.)?

    #306398
    imanuelgittens
    Participant

    Thanks for getting back to me. I did reach out to their support but here is what they said

    I tried to remove the members from the groups but it looks like there is nug in buddypress itself. It doesn’t remove the member from the group.

    I tested the same thing with the wordpress default theme and the same result so it is a buddypress specific issue. Can you please once contact buddypress support and report the issue.

    So I’m not 100% sure right now what is the source of the problem.

    #306390
    Nahum
    Participant

    could try
    https://codex.wordpress.org/Shortcode_API#Output
    and
    codex.buddypress.org/developer/loops-reference/the-blogs-loop/

    #306388

    On the Buddypress activity page, you can filter by All Members, Favorites, Mentions, ect…

    How do I add a filter to only show updates from a specific user id?

    #306384
    imanuelgittens
    Participant

    Hi, I’m using the buddyboss theme which uses buddypress and the groups functionality is giving me some trouble. I can’t remove members from a group – I have to ban them then add them to another group. Is this a common problem?

    #306383

    In reply to: PROBLEM IN DATA EXPORT

    shanebp
    Moderator
    #306380
    visitatore
    Participant

    Wordpress version 5.2.1
    Buddypress 4.3.0
    Twenty Twelve theme
    Link to the Blog: https://problemaesportazionedati.altervista.org/

    PROBLEM IN DATA EXPORT:
    Created ALTERBLOG account (exported data issues)
    enabled:
    1) Cache
    2) https
    3) Cloudflare
    Installed Buddypress 4.3.0
    Activated all components in “Buddypress Settings”
    Went to “Tools / Export Personal Data” and tried to download personal data.
    Data downloading was unsuccessful and produced the following warning:

    An error occurred while trying to export personal data.

    SyntaxError: Unexpected token <in JSON at position 0

    Brand new Alterblog account; Buddypress unique plugin installed; tried other Themes with the same result.

    Try the same procedure with other themes and get the same result.

    Can anyone from Buddypress solve the problem?

    Early thanks. (I’m using Google Translate, greetings from Italy)

    Claudio

    salmansaleem920
    Participant

    Hi,
    I have a community site build on buddypress. So far, all is going good but now my client wants extended profile field (Surname of user) to be shown in place of default first and last name of user. How can i do this ? Please help

    #306370
    randyhintz
    Participant

    Hello,
    I apologize in advance if this is not the correct place for my questions, and please direct me to a better place if I have made that mistake.
    I am the head coach for a start-up robotics team. I have created a website for reaching families in my area, and this website may expand to include some tools for team management. I have been searching for the right plug-in(s) to add, and I believe BuddyPress may be a good fit (probably with a companion plug-in or two). I’d like to share my requirements and I solicit your feedback to see if you believe BuddyPress is a good fit.
    1) Practice and competition calendar with attendance options (I am looking at Events Manager for that part)
    2) Ability for me and others to create announcements, and allow replies that are visible to all other team members. (I think this obviously fits posts)
    3) Ability for announcements to be received via email. (This also looks straightforward)
    4) Ability for members to reply to announcements via email (not sure if this is possible)
    5) Ability to control separate “teams” (groups?) with announcements and events to be segregated.
    6) I would like to control membership, so I would add new site members instead of having open registration, but once a person is registered, allow them to control their own profile.

    Thanks in advance for your help.

    mohammedarif
    Participant

    Hello,
    I build a custom tab which url “http://example.com/members/{dynamic_user_slug}/customtab” in BuddyPress profile page. I want when user click a menu then he goes to his custom tab that is “{dynamic_user_slug}/customtab”.
    So how can I get this dynamic_user_slug in the url?

    #306362
    wasanajones
    Participant

    I’m trying to create a shortcode to replace the Site Directory page generated by Buddypress on multisite networks.

    Know of a resource to do it in functions.php or bp-custom.php ?

    Thanks

Viewing 25 results - 5,851 through 5,875 (of 94,540 total)
Skip to toolbar