Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,726 through 2,750 (of 3,719 total)
  • Author
    Search Results
  • #100614
    teebes
    Participant

    Hmm, I was under the impression batcache would only cache public pages (non-logged in users). The above seems to indicate otherwise. Is batcache really buddypress aware (I noticed the last update of the plugin via the repo was back in April ’09).

    #100593
    David Carson
    Participant

    No courseware. The site was launched March 2009 on WordPress MU/BuddyPress. Slight modifications based on snippets/plugins posted by Burt Adsit, Paul G., Boone G., JJJ and Andy.

    The content is mostly pre-recorded video and audio – not a formal educational program with assignments etc. So the setup is pretty straightforward and most of the customization is just theming. Main site has different content for logged out and logged in users. “Classrooms” are private sub-domain blogs (soon-to-be sub-domain sites) with a classroom theme. The main site and classroom sites are both using custom child themes powered by the BuddyPress default theme.

    I’m in the process of upgrading the site so I’ll be around here more often if you have questions.

    #100306

    In reply to: BP Sections?

    @mercime
    Participant

    That “section” could be a “group” component already in WordPress and joining groups is either voluntary for public groups or by invitation for private groups and each group can have a forum if the group admin so chooses. That’s basic behavior which can be changed via a plugin you can make to do so. You could check out BuddyPress Group component and other default components by logging in http://testbp.org/ with the username and password you used here.

    #100109
    r-a-y
    Keymaster

    Object caching bug most likely experienced with W3 Total Cache.
    If you don’t have W3 Total Cache installed, not sure.

    toffee
    Participant

    if ‘User A’ is admin of two private groups (B and C)
    when members request to join those groups, the notification is sent to ‘User A’ with multiple notification
    the notification may look like this: “2 requests group membership”
    the problem is the link of notification is just only one of two group, when click that notification, it will redirect to group admin request (B or C), and notification will gone.

    brief: request is both B and C but notification link is only B or C
    So, I’d like to change multiple notification to each single notification or any idea to fix above problem, please help.

    #99574
    roman
    Participant

    similar problem over here, autocomplete function finds valid users and shows them up, but in the following lines an error is displayed 3 times:

    “Warning: Cannot modify header information – headers already sent by (output started at mountpointwp-contentpluginsbuddypressbp-themesbp-default_incajax.php:556 in mountpointwp-contentpluginsbuddypressbp-messages.php on line 556”

    any idea?

    by the way, is there a plugin which enables a better useabbility for choosing multiple user’s to send a private message to? Something like a list with checkboxes for example?

    Ezeke
    Member

    @dwenaus thank you very much for this code, it works awesome!
    I’m missing one feature though, when you click “create a new thread” you can’t chose the private/hidden groups, it would be great if you could add this.

    #99372

    mmm… none of the above… and I’ve done some further research and discovered more clearly what the behaviour is.
    To start, this is what I am looking to achieve:

    – If a user is NOT a member of a hidden group then it is hidden and they do not know it exists at all.
    – if a user IS a member of a hidden group then it comes up on the group widget list as visible.
    – all other current behaviour stays the same i.e. public (full access) private (can be seen but not entered).

    Now… what I have now found is that the group list pages do exactly what I expect, but the group widget behaves differently.
    The widget does NOT show hidden groups even if you ARE a member but does show private groups that you are NOT a member of.
    Also what I have seen is that if I look at another members page the group widget appears to then show their groups not mine (this might be an admin ‘feature’ though)???

    So if I have a 1000 groups and a user is member of 3 I do not want to display 1000… only 3 that are relevant to them.
    For my application the users will not be able to register to be part of these set of groups as they relate to where they live.
    If a user browses a friends page I do not want the group widget to then show the groups relating to the friend.

    So it seems that the group widget is using some diffently coded filters than the group listing pages and this (to me) is not correct and is (possibly) a bug.

    I hope that is a little clearer on the nature of the issue… can be a little difficult to explain these things in a posting without loads of illustration etc to demonstrate.

    cheers and thanks for your input.

    #99329

    Well I am looking at that plugin for a news type capability perhaps but it doesn’t address the fundamental behaviour I’m looking for… I really want the ability for hidden groups to be ‘seen’ by their members and therefore display in the group widget or for private groups to be hidden from non-members. The announcement plugin says if not admin->display in read only mode.

    In essense if you have a thousand groups you wouldn’t want to present them all to non-members, but you do want to display those that you are a member of. The current group visibility behaviour (public,private,hidden) does not support this and it seems to me to be logical in many situations.

    There must be a segment of code that reads… loop the groups -> if hidden and if not Admin, do not display… I just need to know where that piece of code is !!!

    #99328
    Virtuali
    Participant

    @matiaspunx, Usually it will list the username, unless it is a private message.

    It would surely be possible if you took the code of the (function ‘show user avatar’) ‘buddypress’)), and placed it in the adminpar php file, it would show up.

    I would highly recommended seeking a professional web builder, because it requires going to to the Buddypress Core Elements, and would take some expert styling on avatar size, due to dropdown menu.

    #99327
    Virtuali
    Participant

    @liesl1698 Are you talking about a Facebook Notification Functionality?

    If yes, sorry, unless you are an expert at html code functions, that is not an option at the moment. The Notifications feature is for private messaging, and community functions. There may be a plugin in the near future.

    #98900
    Brajesh Singh
    Participant

    Hi,
    The reason it is happening perhaps hide_sitewide is not set to 1 for private activity. Most probably a conflict with some plugin as you already mention above. Can you check the database activity table to confirm that ?

    Have you put the code
    `
    define(“BP_DEFAULT_COMPONENT”, “profile”);
    `
    In wp-content/plugins/bp-custom.php, It will make the profile accessible if put in bp-custom.php. yes,it simply change the default profile component(landing page on profile) from activity to xprofile.

    #98864
    Brajesh Singh
    Participant

    Hi,
    The private updates on group should not be visible to anyone other than the profile owner. It means something is wrong, you should check other plugins.
    btw, yes, you can remove the activity section from profile. put the following code in your theme’s functions.php

    `
    global $bp;
    bp_core_remove_nav_item($bp->activity->id);
    `
    But this will make the profile inaccessible, as activity is set as the default profile component. so you may want to put the following code in bp-custom.php
    `
    define(“BP_DEFAULT_COMPONENT”, “profile”);
    `
    hope that helps.

    #98648
    B-ROCK
    Member

    @djpaul The welcome private message part works. But the emails. don’t. When will 1.2.7 come out? Any alternatives in the meantime? Its strange that we cant just go in and edit the subject

    #98581
    shortfame
    Member

    me the same problem… a private group works,,, but my hidden group doesn´t show any invite button anymore… it´s not safe to use this so far i think.

    #98394
    Nahum
    Participant

    Page Caching Basic, Database Caching Basic, Browser Caching.

    I just figured out that Object Caching was messing up my Private Messages component. When logged in and bouncing from profile to profile and trying to PM a member sometimes the ?r=membername&wp_nonce=XXXX becomes frozen on a previous membername. Turning off the object cache fixed this so I don’t know what if anything could be doing inside the object cache advanced settings can be done?

    I’ve gone ahead and removed Page Caching. Which only leaves me with Db Cache, Browser Cache and Minify(even though I haven’t set any .js or css at all) – I guess removing the page cache should resolve the activity update delay. I’ll turn off Db cache then I’ll only be using Browser Cache and Minify(somewhat)…hm…doesn’t sound like much anymore…hehe.

    I also read that the switch_to_blog fix will be coming in the next release.

    #97810
    shagazulu
    Member

    I also have the same problem. Not just with my regular site, to which I’ve done a ton of tweaking, but also on a fairly fresh install on a different domain. What happens is that I click on “send private message” and everything comes up fine, an email with name of the person I’m about to email, plus a text-entry box to the right of the name. If I try to type into that field, the first thing that happens is that my header image reverts to the original blue of the default buddypress install… and then if I click “tab”, the following html comes up in that field I just tabbed out of: “”. Odd.

    This installation of WordPress only uses the BuddyPress plugin. No other. It’s a relatively clean install, again, with 1 plugin. My main site, however, also exhibits this problem.

    thanks in advance for the help on this.

    #97669
    r-a-y
    Keymaster

    As noted in the ticket:
    https://trac.buddypress.org/ticket/1125#comment:3

    It should be possible by creating a plugin.
    If you have a little WordPress experience, check out /buddypress/bp-groups.php for all the necessary hooks and filters to start work on the plugin.

    #97547
    Ehegwer
    Participant

    As for the usernames, I just added a note to the field that appears on registration. When people are signing up, and that mandatory username field pops up, I make sure users know that this is visible to the entire community. That way they know not to use something private. Most internet users know all about usernames, right?

    #97526
    pcgs51
    Member

    Thanks ehegwer I’ll look for the Private Community plugin. Thats what I needed to know. But still need the username thing. Looks like according to you Boone I’ll need more skills than I currently have. I hope there is a volunteer out there. I won’t mind the usernames so much IF they aren’t visible to the community. My audience will be confused by usernames. Remember these are people who actually already know each other already by real live names. I’m still tinkering with BuddyPress to see if it will work for my community. If I continue to be happy with my customizations I will be interested to know what your fees would be to create such a plug-in Boone.

    #97477
    clarklab
    Member

    Wow it looks like mine goes a bit farther than this. It won’t let me post status updates, private messages, etc. All with that generic, red error message.

    What would be stopping all BP data entry? I can still leave comments on posts just fine…

    #97466
    Ehegwer
    Participant

    Pretty easy. Just create some custom registration fields for each of the categories you want to collect. You can make them mandatory if you want, too.

    Then to make things private you can use the BuddyPress Private Community plugin, and that would prevent prying eyes from seeing things they shouldn’t.

    #97420
    Hugo Ashmore
    Participant

    Not sure of the point in posting these comments on this support site really, think you really need to direct these to the authors site, if you’re post has been deleted inquire privately of them as to why

    Boone Gorges
    Keymaster

    Here’s how buddypress.org does it, with a filter that essentially adds a search term ‘ @username‘ to the bp_has_activities filter:
    `function bporg_activity_with_others_filter( $qs ) {
    global $bp;

    $user_id = ( bp_displayed_user_id() ) ? bp_displayed_user_id() : bp_loggedin_user_id();

    /* Only filter on directory pages (no action) and the following scope on activity object. */
    if ( ( ‘dashboard’ == $bp->current_action && strpos( $qs, ‘personal’ ) !== false ) || ‘just-me’ == $bp->current_action ) {
    if ( strpos( $qs, ‘filter’ ) === false )
    $qs .= ‘&search_terms=@’ . bp_core_get_username( $user_id ) . ‘<';

    return $qs;
    } else {
    return $qs;
    }
    }
    add_filter( ‘bp_ajax_querystring’, ‘bporg_activity_with_others_filter’, 11 );`

    The problem with this approach is that the search bypasses the private/hidden group setting, so activity created inside of a group will show up on public profile pages if it contains @username in it. Here’s a filter that gets around it about halfway, in a hackish way:
    `function bporg_ensure_hidden_activity_updates( $has_activities ) {
    global $activities_template, $bp;

    if ( bp_is_my_profile() || !$bp->displayed_user->id )
    return $has_activities;

    foreach( $activities_template->activities as $a_key => $a ) {
    if ( $a->type != ‘activity_update’ && $a->type != ‘activity_comment’ )
    continue;

    if ( $a->component != ‘groups’ )
    continue;

    $group = new BP_Groups_Group( $a->item_id );

    if ( $group->status != ‘public’ ) {
    unset( $activities_template->activities[$a_key] );
    $activities_template->total_activity_count = $activities_template->total_activity_count – 1;
    $activities_template->activity_count = $activities_template->activity_count – 1;
    }

    $activities_template->activities = array_values( $activities_template->activities );
    }

    return $has_activities;
    }
    add_filter( ‘bp_has_activities’, ‘bporg_ensure_hidden_activity_updates’, 999 );`

    This latter problem should be fixed in BP 1.3.

    #96971
    Stacy (non coder)
    Participant
Viewing 25 results - 2,726 through 2,750 (of 3,719 total)
Skip to toolbar