Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,601 through 2,625 (of 3,425 total)
  • Author
    Search Results
  • techguy
    Participant

    Have you tried asking the plugin author?

    hachimaki
    Member

    bump

    #86642
    Pisanojm
    Participant

    Rich this is already patched… if they want to patch it… VERY long/multiple file patch though… in the trac.buddypress.org site.

    #86632
    rich! @ etiviti
    Participant

    i believe this will be fixed in 1.2.6

    #86630
    guigoz
    Member

    No idea ?

    #86589
    r-a-y
    Keymaster

    @linusf – Read the other solution Travel Junkie posted:
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community/?topic_page=3&num=15#post-44729

    This will block everything but the register and activation pages.

    #86557
    Pisanojm
    Participant

    @paul_gibbs we are also seeing issues using object-cache with BuddyPress and w3 total cache, most notably this manifests itself when trying to send Private Messages… We are using Minify, Database Cache, CDN (Amazon s3), and Browswer Cache (Developmental Version of Plugin)…

    Helene Goldberg
    Participant

    OK, no problem everyone, I’ve figured it out. I just had to disable Global Forum Directory in BuddyPress –> Settings, and now the tab is gone too. Pity, I’d prefer to have that enabled, and see all the topics. Dilemma is that it’d be really great to have that global forum directory I think, we’d just have to change our groups from private to public, and I don’t know if we want to do that.

    #86506
    r-a-y
    Keymaster

    If you’re simply looking at sending a message, then you’re right! messages_new_message() is the way to go.

    If you’re looking to modify this private message over time, you can’t do it via a function because such a function doesn’t exist; you’d have to modify the content via the DB. I’m probably just reading into your use-case a little too much!

    #86452
    linusf
    Participant

    @r-a-y, @Travel-Junkie I replaced Ray’s original code with Travel-Junkies as it was favoured by the majority. However I´m using a lot of pages and Travel-Junkies solution is only blocking the core Bp functions. In addition Ray’s post is no longer present. What do I need to add to block all of my pages for non registered users? where can I find Rays original code?

    #86195
    ourfusion
    Participant

    Thanks for the input so far…
    @mercime – The idea behind it would be that we would allow existing groups (both private and public) to have their own prayer requests so that a group that is based off of a small group bible study per say, would be able to post privately so that only members in that group would be able to view them.

    thanks for these ideas, and any more you may have

    techguy
    Participant

    I thought that there was a solution on the Google Webmaster page: http://www.google.com/webmasters/ I think you can provide them the login and they’ll index it.

    Just know that if you do that, then they’ll likely cache some of the “private” pages which makes it so they aren’t technically private since you could potentially find them in Google’s cache.

    #86109
    ssmediaco
    Participant

    Exactly what I needed! Thanks!

    #86055
    Pisanojm
    Participant

    Good News… I think I figured out the above, all though I still don’t know why I had to add it…

    I added this:

    if ( is_front_page () )
    bp_core_redirect( ‘http://musicpln.org/pln-posts/landing/’ );

    above

    if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
    return;

    and now it all works like a charm… I’m sure somebody can make this look cleaner that I did, but it is effectivley working now…

    #86053
    Pisanojm
    Participant

    Ok, spending evern more time on this… I went back to the idea of using @r-a-y ‘s modified regestered-users-only-plugin… Now it is 95% the way I want except the homepage is not re-directing to the landing page… every other page does this…. probably has something to do with the home page being the activity stream??? I’m copying the key changes I have done to the plugin below:

    // This is a base array of pages that will be EXCLUDED from being blocked

    if ($bp&&($bp->current_component == BP_REGISTER_SLUG ))//buddypress
    return;

    if ( bp_is_register_page() || bp_is_activation_page() || is_feed() ||is_page(‘landing’) ) //buddypress)
    return;

    $this->exclusions = array(
    ‘wp-login.php’,
    ‘wp-signup.php’,
    ‘wp-register.php’,
    ‘wp-activate.php’,
    ‘wp-cron.php’, // Just incase
    ‘wp-trackback.php’,
    ‘wp-app.php’,
    ‘xmlrpc.php’,
    );

    // If the current script name is in the exclusion list, abort
    if ( in_array( basename($_SERVER), apply_filters( ‘registered-users-only_exclusions’, $this->exclusions) ) ) return;

    // Still here? Okay, then redirect to the login form
    bp_core_redirect( ‘http://musicpln.org/pln-posts/landing/’ );

    #86047
    Pisanojm
    Participant

    Hello BP gurus,
    Just checking to see if any of you have any code examples for my privacy problem above… I would love to get this to work tomorrow before my launch… re: private community & redirect to different page for login (with login widget).

    #86045

    In reply to: Private Intranet

    tradiart
    Member

    Thank you!!! :-)

    #86043

    In reply to: Private Intranet

    @mercime
    Participant
    #85948
    Pisanojm
    Participant

    @r-a-y @Travel-Junkie

    Ok, I’m still dorking around with this… the goal is to have my site a register only site. When people go to musicpln.org they will be redirected to the landing page (http://musicpln.org/landing1) which is a BP page with a login widget. I also would like the feeds to not be blocked.

    This code goes in the function.php file:

    function sh_walled_garden()
    {
    global $bp;

    if( bp_is_register_page() || bp_is_activation_page() ||is_feed() || is_page(‘landing1’) )
    // Where landing1 is the page slug of where I would like to redirect
    return;

    if( ! is_user_logged_in() )
    bp_core_redirect( $bp->root_domain .’/’. BP_REGISTER_SLUG );
    // my activity page is the “homepage” and I don’t want to show any BLOG(s)
    }

    add_action( ‘get_header’, ‘sh_walled_garden’ );

    I would like this to redirect to the landing1 reference above (which includes the login widget) The url is http://musicpln.org/landing1

    I saw that you put this code in a previous reply…

    Where can I put this to make it redirect to the LoginPage above? How can I tie this altogether now?

    #85887
    askewz
    Participant

    I can already email everyone that is a member , What I want to do is send a Private Message to everyone, so an email tells them they have a message , then they need to check their buddypress inbox.

    #85715

    In reply to: followers VS friends

    @mercime
    Participant

    @grosbouff There is the BP Followers Plugin by @apeatling for your reference

    One difference between Friends and Followers is that Friends is in core while Followers feature needs the plugin to be activated.
    https://wordpress.org/extend/plugins/buddypress-followers/
    https://wordpress.org/extend/plugins/buddypress-private-messages-for-followers-only/

    The other difference is Followers is ala Twitter following. The “follower” doesn’t need to be approved by the one he follows. While for “Friends” to connect completely friendship request must be approved by the other party.

    #85697
    Rene Simonsen
    Participant

    ok i figured it out, but i still think it is strange that the posted topic i create in a “Private Group” dont get displayed. any special reason for that?

    ajaxmac
    Participant

    Actually – I think I might have done the same thing with the wp-cache plugin. turned it on and then turned it off. That must have been what happened.

    rich! @ etiviti
    Participant

    when you checked the db – was the hide_sitewide set to 1 on those records?

    looking in the BP core code for groups_edit_group_settings nothing updates hide_sitewide if changing the status level from private to public.

    Pisanojm
    Participant

    Ok… I found the issue it was here:
    div.messages-options-nav {
    font-size: 11px;
    background: #eee;
    text-align: right;
    margin: 0 -20px;
    padding: 5px 15px;

    I’ve checked the BP download package and it is ok in there, so it must have been something that I accidently did while changing the css. 1.2.5.2.

Viewing 25 results - 2,601 through 2,625 (of 3,425 total)
Skip to toolbar