Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,876 through 16,900 (of 68,918 total)
  • Author
    Search Results
  • #181393
    carlsandburg
    Participant

    Thanks for the input. Sorry, I’m still confused. I see what you mean, but I don’t see a menu for BuddyPress. I’m using the Twenty Fourteen theme, not a BuddyPress theme, so maybe that’s why?

    When I go to Appearance/Menus, I do see BuddyPress under Edit Menus – which will allow me to check/uncheck the default items that show on the upper-right menu. But I don’t see a way to connect a menu to BuddyPress.

    I’ve disabled all the plugins in the site, still don’t see any other members – for example, which i go to Friends/Friendships, i get the message Sorry, no members were found. I expect it to list all the members of the site.

    #181391
    kingdgm
    Participant

    Thanks all, I finally bite the bullet and did it myself. Whoa, Buddypress got all I want

    #181388
    Haime Croeze
    Participant

    Hi,

    I have a similar issue, however not buddypress upgrade related. I can get to the backend only by using a direct page e.g. /wp-admin/themes.php . Maybe that works for you too? Unfortunately I have still not figured out what the problem is, but like this it works for me.

    #181386
    Andrea Reed
    Participant

    @shanebp Thanks for your positive and supportive response! I’m excited to learn more about BuddyPress and all it can do!

    #181383
    shanebp
    Moderator

    @canadadre

    Can registered users upload media (photos, video, music)?

    Yes, there are plugins for that, like
    https://wordpress.org/plugins/buddypress-media/

    Can I modify the themes to allow for streams to be viewed similar to Pinterest or Tumblr? (I am familiar with PHP, CSS etc).

    You can do anything you like – it’s open source 🙂

    Is there a maximum number of registered user allowed? 1000? 10,000? What determines this?

    It is determined by your server(s) resources and setup.

    Also can the administrator send out email to all registered users?

    There are several free WP plugins for that. You don’t need one specific to BP.

    #181367
    Paul Wong-Gibbs
    Keymaster

    A fix for this has been included in BuddyPress 2.0, which is due for release today.

    https://buddypress.trac.wordpress.org/changeset/8277

    #181338
    James
    Participant

    r_a_y, could you please explain in few words, what changes were done to activity add?

    I mean this patch https://buddypress.trac.wordpress.org/ticket/3856 and the words “..(short version – plugins that insert activity items will continue to work as before, but should be good citizens and update to the new technique)…”.

    As I see, bp_activity_add wasn’t changed, so what update Boone is talking about? thanks!

    #181319
    godavid33
    Participant

    Solution: credit to @lincme on the post https://buddypress.org/support/topic/filtering-out-activity-stream-stuff/

    
    // Remove (hide) various activities from streams.
    function my_hidden_activities($a, $activities) {
    	//if admin we want to know
    	//if (is_site_admin())
    		//return $activities;
    
    	$nothanks = array('activity_comment');
    
    	foreach ($activities->activities as $key => $activity) {
    		if (in_array($activity->type, $nothanks, true)) {
    			unset($activities->activities[$key]);
    			$activities->activity_count = $activities->activity_count-1;
    			$activities->total_activity_count = $activities->total_activity_count-1;
    			$activities->pag_num = $activities->pag_num -1;
    		}
    	}
    
    	// Renumber the array keys to account for missing items.
    	$activities_new = array_values( $activities->activities );
    	$activities->activities = $activities_new;
    
    	return $activities;
    }
    add_action('bp_has_activities', 'my_hidden_activities', 10, 2 );
    
    #181309
    xuanling
    Participant

    Hi All

    Thank you for sharing. When I wanna try to install “BuddyPress Restrict Group Creation”, I saw this note on top of the page

    “This plugin hasn’t been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.”

    Hopefully this plugin still useful.

    Other than Buddy Press, not sure if anyone of you try any other plugin that come with Group Control function?

    Hope to hear from you soon. Thank you

    #181298
    r-a-y
    Keymaster

    I usually test on the Twenty Twelve theme as it’s nice and clean. You can basically use any decent WordPress theme for the most part.

    If BuddyPress doesn’t work with a certain theme, let us know.

    #181297

    In reply to: Buddypress roles

    oyegigi
    Participant

    Hey all. I am new to BuddyPress and am working on building an LMS to accompany in-person classes. I am hitting a bit of a wall though on trying to create the following scenario.

    • I am trying to figure out how I can create different roles that can create certain number of groups.
    • For instance, user role “package 1” can create up to 5 groups; user role “package 2” can create up to 10 groups, etc.

    Does anyone have any suggestions on how I can go about doing this?

    I tried doing a combination of Members with Restrict Group Creation but I need to restrict group creation based on roles, not capabilities.

    I am willing to pay for a custom plugin as well if that’s the direction I need to go in. Any suggestions would be really helpful!

    Thanks.

    #181286

    Private BuddyPress by Dennis Morhardt works an absolute treat for me.

    sharmavishal
    Participant

    Maybe you can refer this

    Groups Loop

    #181277
    sharmavishal
    Participant

    The pleasure is all mine..indeed an honor to be interacting with you.

    Just did a fresh install of Buddypress and stil the same issue remains…

    http://domain.com/username/settings/profile/ is blank with the BP default theme…

    strangely the above page works with buddyboss theme..anyway to debug this?

    Also i dont see “delete account” in the settings menu in the wp-admin bar in BP 2.0

    thanks once again

    #181261
    jerryskate
    Participant

    Here´s an example. I wrote a post on my main site that have buddypress installed as a plugin, and it shows up on my other site in the network that is integrated buddy press theme.

    If i click at the my name, jerry, it points to the site where i made the post, http://abovebasics.com/members/jroc/, instead of http://abovebasics.com/community/members/jroc/. Stuff i do at the sub site, works as it should, but not the activity from the main site.

    Is it possible to fox this?

    Thanks for the help!

    #181255
    DJsix
    Participant

    So, that’s it? Nobody has a solution? Does BuddyPress only work correctly with two themes?

    #181247
    r-a-y
    Keymaster

    Thanks for testing, sharmavishal.

    I’ve created a ticket here with a potential fix for the first two things:
    https://buddypress.trac.wordpress.org/ticket/5537

    I can’t duplicate the third issue.

    godavid33
    Participant

    Wow, so I’m dumb (or at least not as good at googling as I once thought). So, the best most efficient way to do this is using buddypress query filters. No need to add a new tab. Here is the code I ended up with (by editing activity-loop.php)

    
    	$friends = friends_get_friend_user_ids( bp_loggedin_user_id() );
    	$friends[] = bp_loggedin_user_id();
    	$friends_and_me = implode( ',', (array) $friends );
    	$friends_and_me =  '&user_id=' . $friends_and_me;
    ?>
    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ).$friends_and_me.'&sort=DESC') ) : ?>
    

    Activity Loop

    much simpler and don’t have to worry about functions breaking. Subsequently, I believe if for some reason this solution doesn’t work for you and you prefer one of the earlier ones I suggested, then check out https://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/#adding-commenting-support as to fixing/supporting commenting

    #181243
    godavid33
    Participant

    This is claimed as fixed, though I am using the most updated version of buddypress and still having the same problem. Do I have to pull from the trunk to get the truly most updated version or do y’all push it to the wordpress plugin repo?

    #181242
    elaborate
    Participant

    Thanks for the tip, tajenli.

    Anyone reading this might also be interested in the following ticket on trac: #2062

    #181241

    In reply to: Sidebar Removal

    Boone Gorges
    Keymaster

    Here’s more on how BP’s template hierarchy works. This is what you’re tapping into. https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    #181236
    sharmavishal
    Participant
    #181229
    jerryskate
    Participant

    Doesn’t seems to work. I use an integrated buddypress theme (sweet date), and i i don’t have a bp-custom.php but a functions.php in the child theme for modification. Tried to create a bp-custom.php anyways, but it didn’t pick up any of my other custom snippets, so i ruled that one out. Any other suggestions?

    Thanks for the help!

    #181216
    modemlooper
    Moderator

    in

    bp-templates/bp-legacy/buddypress/members/single/member-header.php

    remove

    <?php if ( bp_is_active( 'activity' ) ) : ?>
    
    	<div id="latest-update">
    
    		<?php bp_activity_latest_update( bp_displayed_user_id() ); ?>
    
    	</div>
    
    <?php endif; ?>
    Boone Gorges
    Keymaster

    It looks like the $group_id is not passed along to the display() method in the same way as it is to the other display methods. That means you’ll need to implement your own technique to get that value. Try this:

    function display() {
        $group_id = bp_get_current_group_id();
        $setting = groups_get_groupmeta( $group_id, 'whatever' );
        var_dump( $setting );
    }

    I do think that you *ought* to be able to get the $group_id inside of display() like you can in settings_screen() etc. I’ve opened a ticket for that, which we’ll fix for 2.1. https://buddypress.trac.wordpress.org/ticket/5533#ticket

Viewing 25 results - 16,876 through 16,900 (of 68,918 total)
Skip to toolbar