Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,351 through 10,375 (of 69,016 total)
  • Author
    Search Results
  • #252881
    danbp
    Participant

    Hi,

    You’re probably on a large screen. Default display of the directory is already a list. See template code (members-loop.php) using ul and li !

    Check your theme or try to simulate a mobile screen (if u use firefox it’s Ctrl+shif+m) to see if your directory get wrapped or not. If not, adjust your (child)theme CSS.

    sharmavishal
    Participant

    Have you looked at template hierarchy?

    Template Hierarchy

    #252860
    Henry Wright
    Moderator

    Hi @etavio

    Your custom plugin is most likely filtering get_avatar to display your custom images. BuddyPress actually bypasses that filter through the use of bp_core_fetch_avatar().

    Ref: https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/bp-core-avatars.php#L192

    You will need to use a different filter.

    modemlooper
    Moderator

    BuddyPress users are the same as WordPress so you can create a user using https://codex.wordpress.org/Function_Reference/wp_create_user

    To set profile fields data:

    xprofile_set_field_data( $field, $user_id, $value, $is_required = false )
    
    $fields = field id
    
    $user_id = current login user id
    
    $value = inserted value
    
    $is_required = boolean
    #252857
    modemlooper
    Moderator

    BuddyPress searches username and profile fields to find a member. You would need to develop a custom solution for this. Is this requirement for site admins? If so, you can find members by id in the admin -> Users menu item.

    #252856
    modemlooper
    Moderator

    Any profile fields you create in the admin that are in the first section are automatically added to the registration form.

    User Extended Profiles

    #252855
    danbp
    Participant

    Hi,

    you have to check your custom plugin. Or even to deactivate it, as it is no more necessary when you use BP. Problem seems to be that you created something related to members handling before BP was installed.

    BuddyPress handles members and their avatars via the buit-in WP avatar function.

    If you need more help, please give details about your config, theme and custom code. Thxs 😉

    #252854
    danbp
    Participant

    Hi,

    it’s related to a custom work of the theme used on buddypress.org. You can read more here and get the source code here.

    Read also some advice here

    #252836
    Henry Wright
    Moderator

    If so, make sure you assign that page to your BuddyPress “register” page under the BuddyPress admin menu.

    #252831
    shanebp
    Moderator

    Unless you are explicitly using the bp-default theme, not recommended, you should always use these templates: buddypress\bp-templates\bp-legacy\

    iow. this members-loop:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    #252826
    carrieoke13
    Participant

    Thanks, Shane.

    So I have it working now using:

    
    $your_city= xprofile_get_field_data( 'City' ,bp_get_member_user_id());
    				
    if ( $your_city != false ) 
       echo $your_city; 

    I am super new to BuddyPress – is there a reason not to do it that way? I really appreciate your help.

    #252818
    Paul Wong-Gibbs
    Keymaster

    Do not edit core BuddyPress files. Next update, it’ll be replaced and you’ll have to do it all over again.

    #252817
    fredgraver
    Participant

    Sure:

    bbPress
    BB Profile Search
    BB Registration Options
    BuddyPress
    BuddyPress Cover Photo
    BuddyPress Docs
    BuddyPress Group Email
    Fast Secure Contact Form
    K Elements
    NextGen Gallery
    NextGen Plus
    rtMedia for WordPress, BuddyPress and bbPress
    Sidekick
    Slider Revolution
    User Role Editor
    WP Smush Pro
    WP-DBManager
    WPBakery Visual Composer
    WPMU Dev Dashboard

    No Custom Code on there, just what comes with Kleo and WP.

    thanks!

    fred

    #252814
    Hugo Ashmore
    Participant

    @mtgame21 We attempted to comprehensively provide classes on the body element to cover and catch as many conditions in BP so check those classes – as Henry points out – on the body element. The first you’ll possibly notice is ‘.bp-user’ to cover all instances of a users account screens. As an example if you’re looking at your profile screen you should see a series of body class tokens like this:

    xprofile bp-user my-account my-profile profile public buddypress

    With these classes we cover all important states, we inform we are on a Users series of screens ‘bp-user’, we state in this instance that it’s the logged in users account with ‘my-account’, we state the specific screen ‘profile’ and again we further specify that this is ‘my-profile’ the logged in user.

    Check out further screens to see how these class tokens will change.

    #252807
    SlowSpeed
    Participant

    Ok, I tried what you said
    I changed the theme and enabled just the buddypress plugin and still I can’t send any messages..
    It only works if I send a global message to all users with admin (but still no one recieve it) but if I try to send to a specific user it doesn’t work

    #252803
    Rapforthemoment
    Participant

    I have successfully removed the message from appearing in my backend by cutting out this code in wp-content/plugins/buddypress/bp-core/admin/:

    if ( !empty( $orphaned_components ) ) {
    		$admin_url = bp_get_admin_url( add_query_arg( array( 'page' => 'bp-page-settings' ), 'admin.php' ) );
    		$notice    = sprintf( __( 'The following active BuddyPress Components do not have associated WordPress Pages: %2$s. <a href="%1$s">Repair</a>', 'buddypress' ), esc_url( $admin_url ), '<strong>' . implode( '</strong>, <strong>', $orphaned_components ) . '</strong>' );
    
    		bp_core_add_admin_notice( $notice );
    	}

    So far there are no malfunctions and no drawbacks. The message is gone and everything appears normal. Seemed to do the trick. Now I can register users through my themes registration process and not have to worry about any Buddypress registration.

    #252802
    Rapforthemoment
    Participant

    Is there really no way to remove that nag notification? That seems like a pretty big drawback. Not even in the Buddypress files, there isn’t some code to cut out or insert to remove this message?

    #252788
    shanebp
    Moderator
    #252785
    BackpackersUnion
    Participant

    @sharmavishal Thanks for the suggestion! “BuddyPress Wall” goes beyond what I’m looking for and seems to have quite a few unhappy users (Even most of the 5 star reviews are issues). So, I’m afraid it will cause more issues than it would solve.

    I’ve found a tutorial here using bp_parse_args() to create an activity loop with ‘Personal’ and ‘Friends Activity’ only, but not a way to isolate the loop into its own subnav tab “All” (The code currently effects all activity loops universally [i.e. Friends, Personal, Mentions, Favorites, Site wide, all become Friends+Personal loops]).

    Here’s the code to filter the activity loop into Friends+Personal,

    function my_filter_activity( $loop ) {
        
        $loop['scope'] = 'just-me,friends';
     
        return $loop;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'my_filter_activity' );

    The next step would be isolating the loop into an ‘All’ activity subnav tab/button.

    Any ideas?

    dowen777
    Participant

    I can’t get the escaped characters to appear in a way that reflects what BuddyPress is outputting to the screen.

    #252774
    ishvara
    Participant

    Question (or maybe a suggestion) to Buddypress developers:
    I was wondering if it’s possible to apply a filter to
    the returned $slug in groups_check_slug() function
    so that anyone can play with BP group slugs?
    Cheers.

    #252769
    shanebp
    Moderator

    To determine if the issue is in your theme, try switching momentarily to a WP theme like 2013.
    You’ll need to copy members-loop.php to a buddypress folder in that theme.

    You can only echo the data if it exists.
    Try:

    $your_name = bp_get_member_profile_data( 'field=Your Name' );
    if ( $your_name != false ) 
       echo $your_name;
    #252765
    Paul Wong-Gibbs
    Keymaster

    BuddyPress 2.5 made a lot of changes to how BuddyPress works with emails. We’ve been making incremental fixes and compatibility improvements in each release since, and we have v2.5.3 almost ready for sometime in the next couple of weeks or so.

    People still having problems could try running https://en-au.wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/ to see if it helps, but we have other fixes in place for v2.5.3 that aren’t provided by this plugin.

    #252763
    Paul Wong-Gibbs
    Keymaster

    Thanks. This isn’t actually a bug in BuddyPress, but we flag it to reveal code in other plugins running at the wrong time because quite often this can cause very subtle problems in BuddyPress and other plugins.

    We’ve very recently adjusted the messaging to make it clearer which plugin is causing us to trigger this notice: https://buddypress.trac.wordpress.org/changeset/10709/

    #252758
    Rapforthemoment
    Participant

    Hey Buddypress users. I have current version of WordPress and Buddypress (4/22/2016).

    I am trying to completely remove the need for Buddypress registration. Reason being, I have a theme that has its own registration process. With Buddypress registration, that makes it two completely different registration processes.

    I want to remove the need to have a Buddypress registration process completely. I have searched throughout your entire forum and I have tried everything. Nothing works. I continue to get the message “Missing buddpress register page. Repair.”

Viewing 25 results - 10,351 through 10,375 (of 69,016 total)
Skip to toolbar