Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,001 through 2,025 (of 3,436 total)
  • Author
    Search Results
  • #131781
    Etienne ROSENSTIEHL
    Participant

    Many thanks but nothing really works automaticly as it does on WordPress with theme-my-login or equivalent plugins.
    I tried to use the ‘pending’ status for user and it does not work either.
    At the end of the day, I use Buddypress and Private BuddyPress and I unclick the ‘anyone can register’ tick box.
    – Users are then created manually by the Admin. Probably the most effective moderation.
    – Blog and pages are public, social network remains private.

    #131545
    @mercime
    Participant

    It is activated by default. Each member can change preferences in member’s Settings > Notifications panel.

    #131539
    @mercime
    Participant

    Do stick with the same topic thread for the same issue.
    Closing a duplicate topic in favor of the same with more information – https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/reply-to-private-message-is-sent-twice-1/

    #131472
    Anonymous User 96400
    Inactive

    What @mercime said together with filtering `groups_valid_status` to only return public and private should do the trick.

    #131459

    In reply to: Groups will not create

    LisaWolfe
    Member

    … last FYI: I also have the following plugins active.

    All in one Favicon Version 4.0 | By Arne Franken
    BP Group Management Version 0.5.2 | By Boone Gorges
    BuddyPress Version 1.5.4 | By The BuddyPress Community
    BuddyPress Album Version 0.1.8.11 | By The BP-Media Team
    BuddyPress Docs Version 1.1.19 | By Boone B Gorges
    BuddyPress Like Version 0.0.8 | By Alex Hempton-Smith
    BuddyPress Mobile Version 1.5.2.3 | By modemlooper
    BuddyPress Private Community Version 0.6 | By NipponMonkey
    CubePoints Version 3.1 | By Jonathan Lau & Peter Zhang
    CubePoints Buddypress Integration Version 1.9.8.4 | By Tosh Hatch
    Envolve Chat Version 2.3 | By Envolve.com
    Events Manager Version 5.1.3 | By Marcus Sykes
    Google Maps Lite Version 2.4.1 | By Ve Bailovity (Incsub)
    Jetpack by WordPress.com Version 1.2.2 | By Automattic
    VoucherPress Version 1.4 | By Chris Taylor

    #131265
    dan77
    Member

    try this one:
    http://pastebin.com/rgJ6BQc8

    logged in users only, private site. code needs to go into a bp-custom.php in your plugin directory.

    #131264
    dan77
    Member

    a solution without plugin for a private community, logged-in users only:
    I used the code of david carson described in this thread:
    https://wordpress.org/support/topic/theme-frisco-for-buddypress-login-in-home-page?replies=18

    here is the code you need to paste in a bp-custom.php in you plugin directory.
    (you have to create it if you don’t have it).
    Note: that not logged in users are redirected to slug/register page, you have to change it if your register page has a different URL.


    <?php

    // **** Privacy ********
    function restrict_access(){
    global $bp, $bp_unfiltered_uri;

    // If user is not logged in and
    if (!is_user_logged_in() &&
    (
    // The current page is not register or activation
    !bp_is_register_page() &&
    !bp_is_activation_page()
    )

    ) {
    // Redirect to registration page. Change /register to your register page slug
    bp_core_redirect( get_option('home') . '/register' );
    }
    }

    add_action( 'wp', 'restrict_access', 3 );

    http://pastebin.com/rgJ6BQc8

    #131262
    dan77
    Member

    if you want complete private community I used the code of david carson described in this thread:
    https://wordpress.org/support/topic/theme-frisco-for-buddypress-login-in-home-page?replies=18

    here is the code you need to paste in a bp-custom.php in you plugin directory.
    Note: that not logged in users are redirected to slug/register page, you have to change it if your register page has a different URL.

    ‘<?php

    // **** Privacy ********
    function restrict_access(){
    global $bp, $bp_unfiltered_uri;

    // If user is not logged in and
    if (!is_user_logged_in() &&
    (
    // The current page is not register or activation
    !bp_is_register_page() &&
    !bp_is_activation_page()
    )

    ) {
    // Redirect to registration page. Change /register to your register page slug
    bp_core_redirect( get_option(‘home’) . ‘/register’ );
    }
    }

    add_action( ‘wp’, ‘restrict_access’, 3 );

    http://pastebin.com/rgJ6BQc8

    #131252
    Mary Jane
    Member

    Try member access plugin. Thats what i use

    jbsocial.com

    heyshamsw
    Member

    The relevant pages are now private and password protected so I can’t let you have access to them.

    However, I can tell you that there is no misalignment and all the BP content is fine – it’s just the sidebar that will not display.

    Also, I tried installing just WordPress and BuddyPress fresh on a subdomain – with nothing else installed – and I still had the same result, i.e. no sidebar on the BuddyPress pages.

    There seems to be somthing in WordPress, Thematic or BuddyPress that does not want to play nice.

    For the time being I shall have to continue with the work-around I outlined above – not ideal but workable.

    Thanks again.

    rsteer
    Member

    Oh, I should add that the Groups are all public, not private.

    #130857
    BlinkyBill01
    Participant

    I too am having this problem. I’m using a custom theme from RocketThemes. I looked in the member-header.php file and it has that line of code you listed.

    On my member profile pages it only lists “Add Friend” Public Message” & “Private Message.”

    Tux Kapono
    Participant

    aces, that’s a good option, but many simply don’t even want to have to adjust their settings to hide what they view as very private data, and many won’t even check until they get someone telling them, “Hey, did you know a lot of your private data is showing on your profile?” By then, trust is lost, often permanently.

    dt10111
    Member

    I’m trying to find an answer to this myself. I read something, somewhere that I forgot to bookmark, that basically said this is working as intended. But it seems like massive design flaw. It seems as if it should be able to be fixed, since I CAN see all groups as Admin.

    I’ve tried playing with stuff with user access plugins and I can’t find anything to toggle that helps. Assuming it is simply in the theme or plugin somewhere, but I can’t put it together.

    #130496

    I have also Tried disabling the ajax features but still problems… Any help would be awesome.

    #130471

    I am also getting “response is null” errors in firebug when viewing the global activity page from the global.js file
    `
    response is null
    jq(this).html(response.contents);
    `

    #130459
    Sal
    Participant

    Yes the https://wordpress.org/extend/plugins/mail-from/ plugin changes the from mail with a user or a specified email as aces said above.

    Seems my issue was I installed a Private Community plugin did not even activate it and it created a problem with buddypress sending out the email

    As soon as I removed the plugin the issue was resolved. I need only add my categories, social login and bingo we are up and running.

    Love WordPress :)

    Paul Wong-Gibbs
    Keymaster

    Because that plugin hasn’t been updated since September 2010? https://wordpress.org/extend/plugins/buddypress-private-community/

    Tux Kapono
    Participant

    Actually, I did. She was wondering if there were more obvious solutions than what she could think of. Though she mentioned that the listed solution only works if you don’t ever have a different field name.

    Attached is a screenshot of what I really was hoping BuddyPress would have, a standard Ning feature, which allows you to select ‘private’, so the answer will only be visible to you and other administrators: http://csplacemaking.com/images/profile-questions.png. This is the ideal solution.

    #130219
    aces
    Participant

    @dope-sheet

    Please start a new topic for new or different issues?

    https://buddypress.org/community/groups/buddypress-private-community/home/ is listed as incompatible with 1.5+ in Aug 2011 on https://codex.buddypress.org/releases/plugin-compatibility/ (although the error there is wrong) and doesn’t appear to have been recently upgraded

    #130218
    Dope-Sheet
    Member

    Can anyone tell us why this message appears after install in plugins>>>> Fatal error Call to undefined function bp_core_redirect() in /home/*******/public_html/*******wp-content/plugins/buddypress-private-community/mm-buddypress-private-community.php on line 386 ?? also crashes whole site…Thanks

    innerpenguin
    Participant

    It is the regular WordPress version 3.3.1 using a new install of Buddypress 1.5.4. This issue occurs even with the default theme activated and with all other plugins deactivated.

    @mercime
    Participant

    WP/BP versions? Is this an old upgraded installation or a new installation? Have you tried basic troubleshooting like changing to bp-default theme and deactivating all plugins except BuddyPres to see if issue is corrected?

    #130099

    In reply to: Forum Help

    @mercime
    Participant

    >>> Right now I only have 2 groups, as the site grows users will be able to create their own groups and have a forum. The 2 groups I have is one for all users (I don’t want a forum for this group), and the second group is just for businesses that join the site. The business member group has a forum that I am only making visible to the business members.

    If you do not want a group to have a forum, then do not enable the group’s forums in that groups admin page.

    If you want to make the forum visible to only the business members group, then make that group a Private Group or a Hidden Group.

    >>> … the forums page is showing.

    Not clear whether you’re referring to the group forum or the sitewide forums page.

    >>> How can I set the forums page to be the sitewide forums? I have the custom link in the navigation bar and that is fine.

    Not clear. Do you mean that you want to use the “forums” slug for your sitewide forums?

    >>> But in the community widget, there is a link for forums and I do not want that because it just takes you to an empty forum and I do not want them to use that for their reviews. Ideally I would love for that to go to the review forum. Hope this makes sense.

    Not clear. Which community widget? What theme are you using?

    leosampieri
    Participant

    i’m going to look for membership plugin that works on a multisite installation.
    perhaps i can set one public, one private.

Viewing 25 results - 2,001 through 2,025 (of 3,436 total)
Skip to toolbar