Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,376 through 2,400 (of 3,443 total)
  • Author
    Search Results
  • #106335
    shopnobaz
    Member

    There is no solution of this problem! No one can help!!

    j4yz
    Member

    Sorry my first post
    __

    Is that with the existing group functionality to solve?
    How can I add another group tab (eg “other group”)?
    This new tab “other group ” should go through the same steps like to create a new group. In step two (settings), it should be directly a private group, without the forum (no choice). In step 4 (invitations), only be invited friends there are, not even in the “other group “.
    Any ideas and tips how can I implement it?
    What should I do, what files I need to adjust what tables do I need?

    danbpfr
    Participant

    you can download some version of translation on the buddypress i18n trac:
    https://i18n.trac.buddypress.org/browser
    or on the buddypress trac:
    https://trac.buddypress.org/browser?order=name#tags
    there are only 3 strings diffs between 1.2.7 and 1.2.8 pot, so it’s not very important at this time if you miss something

    If you want to work with pot files, you have to pick in the tagged version, not in the trunk (except for your private tests of course)

    #106189
    r-a-y
    Keymaster

    There is no plugin available for this at the moment, but it is possible (like most things).

    #106176

    In reply to: Private reply

    mike365
    Member

    I’m not too code savvy so I didn’t know if there was a plugin. Any idea of where to find a reputable plugin codes?

    #106173

    In reply to: Private reply

    r-a-y
    Keymaster

    Anything is possible, though that example is a little more specific.

    You could do something with the topic template:
    /groups/single/forum/topic.php

    Check if the post is not the first post in the topic, then check to see if that post is yours or not with `bp_get_the_topic_is_mine()`.

    Hopefully that gives you a few hints to run with.

    neopeacock
    Member

    great!
    thannks

    #105943
    ABomb1977
    Member

    LOL
    Duh on me.
    :)
    Thanks, again!

    #105931
    Anonymous User 96400
    Inactive

    If you use slugs you’ll need to enclose them in ‘, like `is_page( ‘terms-of-service’ )`

    #105922
    ABomb1977
    Member

    Sure. Here’s the code:

    `function sh_walled_garden()
    {
    global $bp;

    if( bp_is_register_page() || bp_is_activation_page() || is_page(terms-of-service) || is_page(privacy-policy) )
    return;

    if( ! bp_is_blog_page() && ! is_user_logged_in() )
    bp_core_redirect( $bp->root_domain .’/’. BP_REGISTER_SLUG );
    }
    add_action( ‘get_header’, ‘sh_walled_garden’ );`

    The activity stream, member directory … the whole nine shows up to not-logged-in users if i add anything to the exclusion line.

    #105920
    Anonymous User 96400
    Inactive

    What do you mean with everything? Can you post your complete code here?

    #105919
    ABomb1977
    Member

    @travel-junkie

    Thanks heaps!
    The only issue is that if I add
    `is_page(slug)` or `bp_is_page(slug)`
    it makes everything visible again.

    Any ideas?

    #105911
    Anonymous User 96400
    Inactive

    @abomb1977
    You’ll have to create that TOS page yourself. It’ll be a normal WP page. Then you can exclude that page like this:
    `is_page(23)`

    23 in this case is the id of the page, so substitute with the proper id. You can use the page slug as well instead of the id.

    #105910
    ABomb1977
    Member

    @Travel-Junkie

    I absolutely adore this code you’ve posted. It’s clean and easy to install, and there’s no extraneous junk that needs to be done. A simple copy/paste does the trick amazingly well for me.

    But here’s a question:

    I know that
    `if( bp_is_register_page() || bp_is_activation_page() )’
    is where I add slugs that make particular pages available to the public.

    I’m also using the bp-xtra-signup, which I think you contributed to. On my registration page, there’s a checkbox to check that says one agrees to the site TOS, but one has to open a link to see the TOS. When that link is clicked, it redirects to the front page of the site that logged out users are redirected to.

    I’m wondering two things: (1) I haven’t made a TOS page, so where is it? Does one come with that plugin? (Cause I have yet to find it. LOL) and (2) Where do I get that slug to add to the visible pages code line?

    Thanks!
    ABomb

    #105573
    switzern
    Participant

    After some searching I found the Private Buddypress plugin.

    That did the trick.

    jokermill
    Member

    Why Docs Tab is active in private group for users that are not member of it?
    is it possible to hide it and make not accessible for nonmembers?

    cezar
    Participant

    can you fix pagination also?

    #105451
    Hugo Ashmore
    Participant

    One possible fix or workaround might be to remove ‘favourites’ from public screens i.e only display this if logged in user is equal to displayed user.

    imho a lot of a members account/profile information is essentially private to them, I do not really need to see another members favourite list.

    #105241
    pcwriter
    Participant

    @thetoolman

    1) s2member. You’ll likely need to download the zip and upload to your site via ftp ‘cuz it’s a huge plugin.
    http://www.primothemes.com/post/product/s2member-membership-plugin-with-paypal/
    2) Buddypress includes a private messaging system (kinda like internal email) but there are a few chat plugins available too. See this post:
    https://buddypress.org/community/groups/miscellaneous/forum/topic/chat-rooms-chat-scripts-any-recommendations/

    Hope this helps! :-)

    #105234

    I think I found my solution.
    Private BuddyPress is the plugin. Sorry.

    #105053
    Boone Gorges
    Keymaster

    I think you might be barking up the wrong tree. Since you want to repurpose an existing query (the ‘my groups’ query) you don’t really need to alter the querystring. Instead, you should be altering the behavior of the query itself, which happens at the level of the bp_has_groups() function, as found in bp-groups/bp-groups-templatetags.php. One of the arguments for that function is user_id; when one is passed, you know you are looking at a my-groups loop.

    Ideally, you would be able to filter bp_has_groups() to detect when a my-groups-type query was being requested, and then hijack it and do a query just for hidden groups. Unfortunately, I don’t believe that there is going to be an easy way to do that in this version of BuddyPress. For one thing, while there is a filter on bp_has_groups, the original arguments (like user_id) are not passed along to the filter in BP 1.2.7 (it’d be a good enhancement request). Second, there is no way to filter groups by status (public, private, hidden) at the moment (that too would be a good enhancement request).

    One quick and dirty way to do something like what you want to do is to filter bp_has_groups, grab the content of the group query out of the groups_template global, and remove the ones that are *not* hidden. It’s not an ideal solution for a number of reasons (for one, it screws up pagination) but it can work. Here’s an example off the top of my head (untested!)

    `function bbg_hidden_groups_only( $has_groups ) {
    global $groups_template;

    // when we are looking at a my-groups page…
    if ( bp_is_user_groups() ) {
    foreach ( $groups_template->groups as $key => $group ) {
    if ( ‘hidden’ == $group->status ) {
    unset( $groups_template->groups[$key] );
    }
    }

    // reset the keys so you don’t end up with blank spaces
    $groups_template->groups = array_values( $groups_template->groups );
    }

    return $has_groups;
    }
    add_filter( ‘bp_has_groups’, ‘bbg_hidden_groups_only’ );`

    #104734
    Virtuali
    Participant

    This is your THIRD post you have made on this problem.

    #104707

    In reply to: Private Intranet

    t.sjogren
    Participant

    @tradiart
    I´m also going to use BuddyPress as an intranet. Its for a company and it is going to be completely locked down if users arent logged in.
    Can you please share some experiences with your intranet solution. The biggest question i have is to “lock down” the site when users are logged out. No information is allowed to be exposed. Do you have the same setup? That the user have to be logged in before accessing any information?
    I´m thinking about RSS feeds. How can i restrict access to them? I want to have BP email updates instead.
    What plugis/hacks are you using to achieve your intranet solution?
    What modules/functions do you have active? Groups? Forum? more?
    Do you have a solution for sending email updates to users when someone reply to a forum post?

    #104704
    sash1ndr
    Member

    Problem solved.

    #104656

    In reply to: BuddyPress Privacy

    @mercime
    Participant

    @joshua_d Some other options include
    https://wordpress.org/extend/plugins/bp-profile-privacy/
    https://wordpress.org/extend/plugins/buddypress-profiles-manager/
    and/or making the site private for members only via script or a plugins like
    https://wordpress.org/extend/plugins/s2member/
    https://wordpress.org/extend/plugins/hs-membership/

    I know that there are other devs who are interested in developing the plugin. Just don’t know when it will happen and whether or not it’ll be free or premium.

Viewing 25 results - 2,376 through 2,400 (of 3,443 total)
Skip to toolbar