Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,176 through 1,200 (of 3,450 total)
  • Author
    Search Results
  • #175078
    BarryB64
    Participant

    sIt sounds like you just need a forum, which would be bbPress. The reason bbPress and BuddyPress are separate plugins is that this allows people to pick and choose according to their needs.

    What you need to figure out first is, what do you want and need?

    This is precisely where my mind was, yesterday. 🙂 Thank for the directed question and the link mentioned by mercime. I’m getting a better picture of two things.

    The document provided clarity on the difference between a sitewide forum and the group forum. I needed this; regardless of app. Here’s the plan:

    I want to create two distinct group forums. The first is “Shore Classified”. I want this to be a private group forum and not open to the public. This is where I’ll have individual forums dealing with specific topics relating to that forum. Ex. Business forum handle businesses in the Shore area. Another forum is Help Wanted.

    I was planning to open this to a specific group of people. I am initially thinking the people in my church and others in the Jersey Shore area. Right now, I’m questioning what should be in that type of forum; as I am concerned with safety. So, I am open to alternative to what type of forum. I’d also like a forum where blog writers can share new stories they’ve written.

    The second group forum is PUBLIC. This group forum is where I want people to go. This will need further developing. My initial thoughts is to create forums for popular area of interest. I did see a plugin that will create topics from my sites blog posts.

    #175026

    In reply to: Recent topics bug

    htrev
    Participant

    Sorry – should have added that I’d only like these topic hidden when they’re from a private group. Fine to show them from public groups that the user’s not a member of.

    #175014
    Asynaptic
    Participant

    Hi Barry, it sounds like you’re not clear on what bbPress and BuddyPress are exactly. So let me try to clarify it for you.

    bbPress is a plugin for wordpress which provides you with forum functionality. And because it comes from the same folks who created wordpress, it works great with wordpress and other WP plugins.

    BuddyPress is a plugin for wordpress which provides you with a social network functionality. What does that mean? Well, imagine facebook, myspace, or any other social media platform – they have profiles, people can create and fill in their userpages, people can message other people privately, they have an activity page which shows their activity on the site, etc.

    bbPress and BuddyPress are two totally different plugins but they work together and can be integrated with one another. But if you want to use just one of them, you can. You do not need to run both.

    I’ve tracked down the video I think you refer to:
    http://labsecrets.com/buddypress-and-bbpress-forums-made-easy/

    And I can clarify that for you as well. BuddyPress used to have its own way of creating forums, called “BuddyPress Group Forums”. But that functionality is deprecated because the developers decided to rely on bbPress rather than duplicate it within BuddyPress. So the latest version of BuddyPress doesn’t have group forums but instead relies on bbPress.

    It all depends on what you are trying to do. What you are seeing in “the two forum apps merging to become one” is simply a deep integration between them so IF people want to use both, they can do so with ease and get the fullest functionality out of that combination use.

    It sounds like you want a forum. If that is the case, forget about BuddyPress and just use bbPress.

    Hope that helps!

    #174794
    bp-help
    Participant

    @1missrodnee
    Yes there is a work around, on line 37 in private-community-for-bp-lite.php you will see:

    
    if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page()  
    

    Change that line to this:

    
     if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page() && !is_home()
    

    The && !is_home() inclusion will free up your home page! Good luck! 🙂

    #174763
    @mercime
    Participant
    #174599
    Martyn_
    Participant

    @sooskriszta I am not sure I follow. Is the suggestion that each user has a number of nested private groups? that *would* be one way to define relationships, but… pretty clunky, no?

    chrisdarts
    Participant

    I’m also having the same issue as mentioned above.

    BuddyPress 1.8.1
    WordPress Multisite 3.7.1

    The button works from the main Groups page, but not when on a single group page.

    #174373
    tse11
    Participant

    @aces Thanks much, that was a great idea. Unfortunately it didn’t work. There has got to be a way to at least make these feeds private. If anyone knows, please let me know.

    #174338
    minto
    Participant

    Same here, just like biswadip said.
    Trac solution did not work.

    #174275
    Ben Hansen
    Participant

    you may be able to hide the element but you won’t be able to obscure the profile url so there’s really no way (at least that i know of) to make usernames truly private.

    Biswadip
    Participant

    Same happens to me.

    wp3.6.1, bp1.8.1.

    It only seems to happen when you are requesting membership for the private group from the page for the private group (http://www.example.com/groups/group-name/) but not if you are making the same request from the page for all the groups (http://www.example.com/groups/).

    The trac ticket mentioned above has a suggestion for changing bp-groups-screens.php but that did not work in my case.

    #174057
    Marc K.
    Participant

    Is there a way to hash private messages in BP for added security?

    #174037
    Marc K.
    Participant

    Hi Seth!

    Interesting, I didn’t know that you had a BP integration in place for EE. With which BP version was it compatible?

    I know that the BP core developers have their hands full of work, so I won’t blame them for not taking on a complete events module in the core.

    For me the question now is, which plugin takes the least effort to extend on our own. And yes, I know about your crowdfunding like offer to fund extensions to EE. But I need to meet certain deadlines and I don’t think you can guarentee a certain development until then.

    BTW, isn’t the “I’ll attend’ and ‘Maybe’ a pretty simple code addition? A user presses a button which captures that users user id and writes it into a custom field of the event page. The plugin then fetches those ids and shows avatars of those people who attend.

    I found an interesting tutorial (http://wp.smashingmagazine.com/2012/01/27/limiting-visibility-posts-username/) which might lead the way for my other request, specific event visibility/privacy:

    1. Only friends of events creator (again, write all the user ids of the event creator into a custom field thats not visible/accessible to users and then restrict visibility of event page to those users)

    2. Only invited (would require more work. First have a way to notify other users of the event by private message or BP notification. Write the user ids of those into yet another custom field, rest see above)

    I am pretty much a PHP noob. But are these things really so hard to do? More than a week of work for an experienced BP developer?

    #174012
    shanebp
    Moderator

    > looking at formatting the date in private messages … $just_date is false.

    Then the filter will work fine.
    The time will be part of the string passed in $date.
    [ In your filter, var_dump $date – what do you see ? ]
    You just have do some string and date operations on that string.

    #174011
    Henry
    Member

    I’m actually looking at formatting the date in private messages and in that case WP doesn’t call the function with true. $just_date is set to false by default so that part is all good.

    as you say I think i’ll have to write my own custom bp_format_time function. Thanks for your help!

    #173863
    Anonymous User 13302461
    Inactive

    OK I’ll try the workarounds.

    Thanks a lot for the feedback.

    #173861
    Paul Wong-Gibbs
    Keymaster

    Hi @welshdemo

    The theme’s fine. The problem is actually caused by a bug in our widgets (you’re using the Members list and the “Who’s online?” widgets). We’re tracking the bug here https://buddypress.trac.wordpress.org/ticket/5170 and currently aiming to fix it by the 2.0 release, which is probably 4 months away. If we get a fix before then, we’ll put it into a 1.9.x small release.

    A workaround is to make sure that no BuddyPress widgets are rendered before the main content of the page. i.e. try moving the widgets to the right-hand column, or a widget area at the bottom of the page, or just removing the widgets.

    #173859
    Paul Wong-Gibbs
    Keymaster
    #173855
    L-tic
    Participant

    Mine is in German, sry.
    The 5th setting. So one before costum.

    #173844
    Henry
    Member

    article?

    #173841
    L-tic
    Participant

    As for the user ID, it’s clear.
    But I can’t read out the thread ID because to see the profile of a user, I have to set the permalinks settings to the name of the article.
    And if I go to the profile with the default permalink setting, it gave me a 404.

    #173832
    Henry
    Member

    The user ID of the admin is usually 1. That assumes you have just one administrator and that was the first user created when you set up BP. The thread ID is the ID of the private message. You can get this from the URL. It’ll end something like /view/86. It is the digit that you want.

    #173828
    L-tic
    Participant

    Ok.
    The user id of the admin is mostly ‘1’, right?
    So I would use this one:
    <a href=”/<?php echo bp_core_get_username( 1 );
    Is this correct?

    By thread id you mean the id of the specific user profile page?
    If so, how do I get this id?

    #173803
    Henry
    Member

    You’ll need the $user_id and $thread_id; for the link to work.

    #173802
    L-tic
    Participant

    Yes, it’s involved in the conversation.. But it would look more elegant, if the user would be redirected to the exact page.
    And yes, i get a 404 error.

Viewing 25 results - 1,176 through 1,200 (of 3,450 total)
Skip to toolbar