Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,951 through 2,975 (of 3,456 total)
  • Author
    Search Results
  • #69436

    In reply to: Members-only groups

    Hugo Ashmore
    Participant

    Members? site members or group members? if group member then surely you just set the group to private which still shows it just not content.

    #69432
    Boone Gorges
    Keymaster

    When you create a group, you have the option of making it Public, Private or Hidden. Public groups are free for anyone to join, and their content is viewable by anyone. Private groups are listed in sitewide directories, so that others can see the group names and descriptions when searching and browsing for groups, but the content of the group can only be seen by group members. Group membership for private groups is controlled, so that a member can only join if they’ve requested membership or been invited by a current member. Hidden groups are like private groups, except that they do not appear in sitewide group listings and search.

    #69391
    3sixty
    Participant

    will do. Thanks!

    #69191
    bpinspire
    Participant

    The user added to the private group does not see the group on his “my groups” page

    #69190
    epsi
    Participant

    Hi! I’ve sent ‘Bahasa Indonesia’ translation via private message to @foxly.

    Language: Indonesia (id_ID)

    I just want to say thank you for this great bp-album.

    Hope my community would love this feature (plugin) too

    after my site officially launched someday.

    note:

    * Main BP ‘Bahasa Indonesia’ translator is @sofyand

    * My alumni bp site (trial) is http://iluni-ftui.org/riwayat/

    #69175
    r-a-y
    Keymaster

    Add this somewhere within your form tag:

    <input type="hidden" name="redirect_to" value="INSERT YOUR URL YOU WANT TO REDIRECT TO" />

    Btw, a thousand maidens is too much, I’d be happy with one nice lass at my doorstep ;)

    #69163
    Mike Pratt
    Participant

    @r-a-y Thank you and may a thousand maidens be blessed upon your doorstep by morning!

    What would be the code to place to redirect the login form action specified by

    <form name="login-form" id="login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login' ) ?>" method="post">

    back to $bp->root_domain?

    #69149
    r-a-y
    Keymaster

    Hi Mike,

    Your code is correct, but since your page isn’t the BP_REGISTER_SLUG or BP_ACTIVATION_SLUG, it will lead you to redirect hell!

    Add your page (and any other page you need to whitelist from blocking) to the following conditional:

    if ( bp_is_register_page() || bp_is_activation_page() || THEWELCOMEPAGE ) //buddypress
    return;

    Change THEWELCOMEPAGE to something that checks if you’re on welcome.php.

    If welcome.php is a WordPress page with the slug of “welcome”, you would use something like:

    is_page('welcome')

    So your conditional would look like:

    if ( bp_is_register_page() || bp_is_activation_page() || is_page('welcome') ) //buddypress
    return;

    Hope that helps!

    #69143
    Mike Pratt
    Participant

    @r-a-y I am embarrassed to be asking such a simple question:

    re registered-users line ~48 -> bp_core_redirect(bp_get_signup_page());

    What would be the correct way to do the following:

    redirect not_logged_in users to a welcome page.. say domain.com/welcome.php which has a login widget for registered users as well as a Create Account button/link taking you to domain.com/register.php ?

    I tried:

    `$page = $bp->root_domain . ‘/welcome.php’;

    bp_core_redirect($page);`

    but, of course, that led me to redirect Hell.

    Thanks for clarifying.

    #69028
    abcde666
    Participant

    sounds like a bug.

    Please submit a ticket in TRAC.

    https://trac.buddypress.org/timeline

    #69010
    bpinspire
    Participant

    @Boone yes 0.3.1 fixed my issue now I can see all the users, but I still have one issue with Private Groups, if I add a user to a Private Group the same user won’t see it. Any idea?

    #68942
    shauny
    Member

    I had the exact same problem, forums that were ‘private’ before the update were unaccessible when I click “forums” or “group/forums”.

    Am now restoring a backup, not going to update yet…

    Andy Peatling
    Keymaster

    @justin_k – I understand your motives, but it is more an ethical/privacy issue. You should perhaps at least let people know that you are harvesting server details. There may be private unlaunched sites that do not want the details of their setup exposed without their knowledge.

    The best way to integrate this into BP is to put this code in a custom plugin or in bp-custom.php file. That way you don’t have to edit the theme at all. This code would also be great if it was added to the actual plugin ;) :

    function bp_add_fb_login_button() {
    if ( !is_user_logged_in() ) {
    if ( function_exists( 'jfb_output_facebook_btn' ) ) {
    jfb_output_facebook_btn();
    jfb_output_facebook_init();
    jfb_output_facebook_callback();
    }
    }
    }
    add_action( 'bp_after_sidebar_login_form', 'bp_add_fb_login_button' );

    That way anyone activating this plugin when using BuddyPress won’t have to do anything else, the login button will just appear on the login sidebar form.

    #68864
    hachimaki
    Member

    The blogs are meant to be public, but no the comunity. So i’ll try with my path, and see what can i do with invitations

    #68842
    Bowe
    Participant

    I’m very intertested in doing this, and I’ve been working on this for the new BP-Tricks site.. I’ll send you a private message with some more details, because I think we are both wanting to do the same; set up a place where plugin suggestions can be made and plugin ideas can get adopted by developers.

    #68825
    Rich Spott
    Participant

    still no help?

    #68813
    1drummergirl
    Participant

    I see it in all emails…friend requests, private messages…anything that send an email notification.

    Tosh
    Participant

    I’m sure there is. I disable the plugins until it starts working I guess.

    [Update] Ok I disabled all the plugins except the following:

    BuddyPress Version 1.2.2.1

    BuddyPress Template Pack Version 1.0.2

    Private WP 2 Version 1.0

    I’m using this theme – Fusion 3.0.4 by digitalnature

    Still not working … so it’s either the BuddyPress Template Pack or the theme … where do I go from here?

    #68680
    r-a-y
    Keymaster

    I haven’t tried my mod site-wide on WPMU because it was only needed on the BP community-side for a site I was working on. If you’re not using WPMU, you should be okay.

    Don’t activate the plugin site-wide if you want your user blogs made public. In this case, only activate the plugin on the blog where BP is activated.

    Re: invites. What are you using for that? The modified plugin doesn’t block the register or activation pages, so if your invites plugin hooks into the register page, you should be fine.

    #68678
    hachimaki
    Member

    I have some questions, in the other thread you say that you don’t recommend to ude ur plugin for wid-site.

    I also say that the blogs of the user must be accesible.

    -I have one question, plugin for inviting people to the community with all this privacy stuff on?

    Sorry for my bbas english, im spaniard, ^^

    greetings from spain

    #68677
    r-a-y
    Keymaster

    @hachimaki

    Instead of modifying all the BP templates, you could try the Registered Users Only 2 plugin:

    https://wordpress.org/extend/plugins/registered-users-only-2/

    I’ve made a few mods to that plugin to better support BP here:

    https://buddypress.org/forums/topic/bp12-plugin-wishlists#post-42114

    @nipponmonkey

    Use what I suggested above.

    Then turn off registration and manually create users. Assign these users a role of contributor or higher.

    #68669
    modemlooper
    Moderator

    Another easy solution is to use a maintenance mode plugin permanently on. Create your own landing page and in the admin allow access to your registration page.

    #68657
    hachimaki
    Member

    Ok, here I am.

    For making buddypress a private commmunity, do the following:

    -Create a new page in the admin interface.

    -Make the page not to show in navigation with one of these: (http://www.kimwoodbridge.com/how-to-exclude-pages-from-the-wordpress-navigation-bar/ ) (https://wordpress.org/extend/plugins/exclude-pages/)

    -Fill the page with HTML (as you wish). If you want Widgets, you can follow this: http://wpmu.org/how-to-widgetize-a-page-post-header-or-any-other-template-in-wordpress/

    -Now, use this in the top of ALL PAGES NOT TO SHOW TO GUESTS: (https://buddypress.org/forums/topic/securing-components-from-non-logged-in-users/page/2)

    if (!is_user_logged_in() ){

    bp_core_redirect( $bp->root_domain.’/register’ );

    }

    AND REDIRECT THEM TO THE PAGE YOU CREATED BEFORE.

    AND THAT’S IT!

    #68600
    Rich Spott
    Participant

    Yes, I tried taking out all plugins and mu-plugins except for buddypress obviously), but still the same error when I, or any of my users, try to post a private message.

    #68446
    3sixty
    Participant

    Rich, did you try disabling all plugins and seeing if that helps?

Viewing 25 results - 2,951 through 2,975 (of 3,456 total)
Skip to toolbar