Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,926 through 17,950 (of 69,106 total)
  • Author
    Search Results
  • #176492
    Ben Hansen
    Participant

    i think he platform itself will be fine but you should be aware that user levels only apply to wordpress and bbpress. buddypress itself doesn’t really use them so your moderators will be able to have extended authority in your forums but they will have no special powers over groups themselves (they will be able to moderate any group forums that are created however) only full wp admins can moderate groups (although you can assign a member to be a group admin manually as admin).

    chibichiii
    Participant

    I’m also looking for a similar solution to this, it’s just so unlogical to have such a fine working BuddyBar “My Accounts” but in such a place where it simply gets burried.
    I am using mostly widgets together with the main navigation. And I would so desperately just want to add THAT menu, into my own excisting menu’s if I only knew how. Or add it to a widget I would settle for that as well. It’s too bad this isn’t a standard function from Buddypress cause I really don’t like letting people into my wordpress backend. So I would prefer to disable the Admin bar for my members. But now I can’t because then they don’t have a menu.
    I also tested the new Buddypress componants in wordpress custom menu’s this is a good step in the right direction. But you don’t have links like to someone’s forum topics, favorites, subscribed etc. Like you have in the buddybar. Or going to the Change avatar link, just too many goodies to miss to leave out the admin bar now.
    Can someone help out here?

    #176483
    Shmoo
    Participant

    No not really, the only places where I’ve changed the avatar sizes is inside BP page templates like this,

    
    <?php bp_the_thread_message_sender_avatar( 'type=thumb&width=64&height=64' ); ?>
    ....
    <?php bp_loggedin_user_avatar( 'type=thumb&height=64&width=64' ); ?>
    ....
    <?php bp_member_avatar( 'height=192&width=192' ); ?>
    ....
    <?php bp_displayed_user_avatar('type=full&height=192&width=192'); ?>
    

    I’m using functions.php to add custom codes, but no avatar related code inside that.

    I did a search at bp_core_fetch_avatar and found this at bp-core-tamplet.php

    
    /**
     * Output a post author's avatar.
     *
     * Not currently used in BuddyPress.
     *
     * @todo Deprecate.
     */
    function bp_post_author_avatar() {
    	global $post;
    
    	if ( function_exists( 'bp_core_fetch_avatar' ) )
    		echo apply_filters( 'bp_post_author_avatar', bp_core_fetch_avatar( array( 'item_id' => $post->post_author, 'type' => 'thumb', 'alt' => sprintf( __( 'Avatar of %s', 'buddypress' ), bp_core_get_user_displayname( $post->post_author ) ) ) ) );
    	else if ( function_exists('get_avatar') )
    		get_avatar();
    }
    

    This is the first time I can track bp_core_fetch_avatar as a function combined with an array() and look there is no width and height inside that array only thumb and alt.

    Not saying this is the problem because I have very limited PHP knowledge but maybe that’s where echo bp_core_fetch_avatar( array(… is getting it’s Avatar from.

    #176476
    colabsadmin
    Participant

    I did this by copying/editing /buddypress/activity/index.php in my child theme. Look for the activity-filter-by select tag. All the options are within it.

    #176471
    cloudbuilder
    Participant

    Thanks for your reply. Sorry I meant the activity comments. When a user is not logged in, they can see the posts on my buddypress site, but not the comments to the posts. Once logged in the comments become visible. The public activity comments disappeared when I updated buddypress recently.

    #176452
    Hugo Ashmore
    Participant

    I’m afraid this doesn’t sound like a buddypress issue, you mention issues with a custom theme and with bbPress widgets. You probably want to look to the theme authors/s for support, also try changing to a known good theme i.e one of the WP default series to establish if the same issues exist.

    #176450
    Henry
    Member

    Try posting your requirements in the BuddyPress Jobs Forum

    BP Jobs Board

    #176446
    Boone Gorges
    Keymaster

    Hm, there must be *something* powering the dropdown. By default, BuddyPress doesn’t have this kind of dropdown. What theme are you using?

    #176444
    juggledad
    Participant

    Just for reference, I opened an issue for this: https://buddypress.trac.wordpress.org/ticket/5307

    #176431
    Henry
    Member

    @mfmsw2youth Thanks for letting me know.

    I hadn’t tested the code. Please try this and let me know how you get on:

    function custom_activity_text_change_avatar( $entry, $user_id ) {
        $gender = bp_get_profile_field_data( 'field=Gender&user_id=' . $user_id );
        $userlink = bp_core_get_userlink( $user_id );
    
        if ( $gender == 'Male' ) {
            $entry = sprintf( __( '%s changed his profile picture', 'buddypress' ), $userlink );
        } else if ( $gender == 'Female' ) {
            $entry = sprintf( __( '%s changed her profile picture', 'buddypress' ), $userlink );
        } else {
            // the user hasn't told us if they are male or female so do nothing
        }
        return $entry;
    }
    add_filter( 'bp_xprofile_new_avatar_action', 'custom_activity_text_change_avatar', 10, 2 );
    #176425
    Boone Gorges
    Keymaster

    > Why not leave “bp-default” in the theme repository with that note that it is no longer being update?

    Yup, we’re going to do this as soon as we figure out how to do it technically without breaking people’s sites 🙂 When it’s in the theme repo, it’ll have the added bonus that it’ll no longer necessarily be the BP core team who’s taking care of it – other community members may step up and officially take charge of maintenance.

    But, as Hugo says, don’t worry too much about it for the moment – bp-default will continue to work.

    > I am currently running the “bp-default,” if I were to experiment with a new theme “Theme-X” – would I have any way to revert back to “bp-default” with a simple activation?

    You’ll have to do this https://buddypress.org/support/topic/bp-default-parent-theme-missing/#post-176376 to make sure you’re able to reactivate it.

    #176423
    Hugo Ashmore
    Participant

    BUT at the same time, when I search for buddypress theme – it is is not showing up as a download option…

    That’s because it’s not available as a standalone theme, it has been suggested that it might be in future and likely will be.

    Less worry should be placed on this, people will be able to use bp-default for ever and a day if they wish, and it’s pretty easy now to decouple it from the core files and run the templates and styles from a theme or child theme.

    #176422
    Hugo Ashmore
    Participant

    i think it is interesting in what buddypress/bbpress is suppose to be about community engagement which seems to be quit the opposite.

    I think that’s a little unfair, @mercime and I have gone to great lengths with the codex effort to make things as inclusive as possible with posts, tweets, polls, and requests in general for feedback from the community at large.

    It’s worth keeping an eye on BP blog posts & bpdevel.wordpress.com to keep abreast of what’s happening.

    One thing – perhaps to what Boone refers – that would help and that has been discussed and is favoured by some is to try and vring the three major aspects of BP under one domain proper so themeing, Documentation, and core dev exist as subdomains of buddypress.org and as such have their own homes for news and updates.

    #176420
    blastblast
    Participant

    Thanks for joining in the conversation.

    Though I’m still pretty confused with the semantics used —

    That it is not being abandoned and will live on as a “legacy theme” BUT at the same time, when I search for buddypress theme – it is is not showing up as a download option…

    I mean, take for example – I am currently running the “bp-default,” if I were to experiment with a new theme “Theme-X” – would I have any way to revert back to “bp-default” with a simple activation?

    Not providing further update for bp-default is one thing, but Why not leave “bp-default” in the theme repository with that note that it is no longer being update?
    To provide another option, if nothing else.

    #176417
    Boone Gorges
    Keymaster

    BuddyPress doesn’t have a very straightforward way to add links like this to the Groups menu. By design, the links in the group nav are intended to correspond to sub-pages of the Group (which are created by BP_Group_Extension), rather than arbitrary external links.

    That said, while we don’t have a very elegant way of making this happen, you could rig something up to directly insert the link data into the navigation array, just before it gets printed to the screen. Something like this:

    
    function bbg_add_my_profile_to_group_nav() {
        // Logged-in users only
        if ( ! is_user_logged_in() ) {
            return;
        }
    
        // Bail if not looking at a group page
        if ( ! bp_is_group() ) {
            return;
        }
    
        buddypress()->bp_options_nav[ bp_get_current_group_slug() ][] = array(
            'name' => 'My Profile',
            'link' => bp_loggedin_user_domain(),
            'slug' => 'my-profile',
            'css_id' => 'my-profile',
            'position' => 9999999, // make it last
            'user_has_access' => true,
        );
    }
    add_action( 'bp_setup_nav', 'bbg_add_my_profile_to_group_nav', 100 );
    

    Note that you can’t use the function bp_core_new_subnav_item() here, because you’re not registering a valid screen callback (among other reasons). Thus the hack of directly inserting the link into the nav.

    Good luck!

    #176413
    Boone Gorges
    Keymaster

    Another brief thought: You say that the Register component is linked at Dashboard > Settings > BuddyPress > Pages. But make sure that the linked WordPress page has its status set to Publish.

    #176412
    Boone Gorges
    Keymaster

    It’s weird that it’s appearing as blank. This could be the case of a failed redirect.

    Make sure that registration is enabled on your site. On Multisite, go to Dashboard > Network Admin > Settings; you’ll see a set of radio buttons where you can select “Users can register” or something like that. On non-Multisite, go to Dashboard > Settings > General, and make sure that “Anyone can register” is checked. (What I suspect is happening is that you don’t have registration turned on. BuddyPress tries to handle this for you by redirecting people away from the Register page when registration is closed, but it could be that the redirect is failing because of something about your Windows setup. Just a hunch.)

    #176409
    Boone Gorges
    Keymaster

    If you’re talking about the author icon on a *blog* post page, then it probably doesn’t have anything to do with BuddyPress – that’s handled by your WordPress theme. In any case, it’s likely that you’ll have to change it in a template file, or at least use CSS.

    What theme are you using?

    #176400
    cloudbuilder
    Participant

    I am also having this problem-though only since I upgraded to Buddypress 1.9. Does anyone know how to get the comments to show again for non-logged in users? I have seen other buddypress sites where I can see the comments without logging in, but maybe they didn’t update? Any help would be appreciated.

    #176397
    Shmoo
    Participant

    I think I’ve got it..

    
    <div class="three columns">
    	<?php bp_get_template_part( 'members/single/messages/messages-loop' ); ?>
    </div>
    
    <div class="five columns">
    	<div class="msg-content-wrap">
    	<?php
    	switch ( bp_current_action() ) :
    	
    	// Single Message View
    	case 'view' :
    		bp_get_template_part( 'members/single/messages/single' );
    	break;
    		
    	// Compose
    	case 'compose' :
    		bp_get_template_part( 'members/single/messages/compose' );
    	break;
    		
    	// Sitewide Notices
    	case 'notices' :
    		do_action( 'bp_before_member_messages_content' ); ?>
    		<?php bp_get_template_part( 'members/single/messages/notices-loop' ); ?>
    		<?php do_action( 'bp_after_member_messages_content' );
    	break;	
    	// Any other
    	default :
    		bp_get_template_part( 'members/single/plugins' );
    	break;
    	endswitch; ?>
    </div>
    

    The only thing I still have to do is protect the column 3 – messages-loop.php from showing to the public or all logged_in users.

    !Please do not use this code on Live BuddyPress sites!

    #176394
    modemlooper
    Moderator

    I created a version without BuddyPress that you can try
    https://github.com/modemlooper/Buddy-Default

    #176392
    julianprice
    Participant

    Thanks for sharing @modernlooper — I will check it out on how to contribute.
    I think there could be room made at Make.Wordpress.org to encourage BuddyPress Community Engagement & Exposure because I see discussion merely on metadata group or other adhoc groups.

    #176391
    blastblast
    Participant

    Pretty gutted by this decision to not support bp-default as it seems to support bbpress and for my site personally, like the emphasis on forums, members activity stream.

    https://wordpress.org/themes/tags/buddypress
    Looking through the handful of buddypress/bbpress focused theme, there doesnt seem to be one thats quite barebones-functional like the Bp-default. Blog-post on the left-center and members/log-in widgets on the right.

    Does buddypress have any plans to release a new “bp-default”?

    thanks

    #176389
    modemlooper
    Moderator

    If you have bp-default active it will still show when upgrading. If you deactivate bp-default it will not show.

    Please consider moving your site to a new theme. There may not be fixes for any new features in the future.

    The define listed above is for sites that do not want to upgrade theme right away. It was created as a fix to give sites time to move away from bp-default. Contact the theme developer and have them remove BuddyPress from your theme so it can use theme compatibility.

    #176387
    blastblast
    Participant

    hi all


    @mdpane
    The BP-Default theme is critical to my site. I am running wordpress and bbpress along with buddypress 1.9

    A couple questions:

    1- Does this mean if I update to buddypress 1.9.1, my bp-default theme will disappear?

    2- Regarding the solution you posted, of adding the code, what exactly does that do? Does it activate the BP-Default theme should you install BP 1.9 or latter?

    3- Will/Is my current installed BP-Default theme in risk of not working in the future?

    Thanks

Viewing 25 results - 17,926 through 17,950 (of 69,106 total)
Skip to toolbar