Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,626 through 2,650 (of 3,443 total)
  • Author
    Search Results
  • 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.

    #85364
    holyphoenix
    Participant

    There are tons of different code edits in here. I am wondering which I should use for buddypress with multisite wordpress 3.0 and where to put it. I made my own bp-custom.php file, but it doesn’t seem to work. Is this file suppose to exist already? And if so it didn’t appear on my installation. :p At least not in the path wp-content/.

    Thanks for your help.

    #85362

    In reply to: Member pages only

    abcde666
    Participant
    Pisanojm
    Participant

    Can anyone confirm this for me as to if it’s specific to my site?

    #85253
    guigoz
    Member

    I have the same with 2.9.2/1.4.2.1. Is it fixed with new BP version ?

    Anton
    Participant

    Anyone fixed this yet?

    #85198
    Pisanojm
    Participant

    Ok, so I dug up a trac ticket on this and it’s be regulated to the PLUGIN category and not actionable -at least for a long time…
    https://trac.buddypress.org/ticket/2244

    Any MYSQL wizards out there willing to look into this plugin for BP?

    #85197
    Pisanojm
    Participant

    This would be a highly desirable option from my stand point and I’m sure many others. The ability to auto-purge Private Messages and/or limit the amount would be great.

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