Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,851 through 1,875 (of 3,463 total)
  • Author
    Search Results
  • ericreynolds007
    Participant

    Good call to everyone’s post on this thread. We develop online communities as opposed to social media networks. Our site members do not want a media feature. Yet it would be great to see it integrated into a future BP release. Maybe, private groups can have the option of using it?

    :) Eric

    Alexander
    Participant

    Cool, thanks – admittedly, I’m a little intimidated modifying the theme code, or adding new plugins. But, I have been itching to get my hands dirty under the hood and learn how to do wordpress specifici coding, so this will be a good chance and resource to dive in. I might have to poke you later once I get this rolling. Thanks for your input Aces.

    aces
    Participant
    #140060

    Sorry, it’s behind a private firewall. Users need to authenticate through our enterprise-wide authentication system.

    #139979

    In reply to: Group members list

    hkcharlie
    Participant

    Something that has just occured to me, with what I am trying to do.
    Is it possible that we can make this happen for member list in Private groups only ?

    or even friends within a private group

    #139667
    Ben Hansen
    Participant

    does anyone know if this plugin works well with current versions of bp or if there’s an alternative? i swear i read something about 1.5 having throttle settings but i couldn’t find anything looking around.

    kristarella
    Participant

    I’m having this same problem; I don’t know how it started, but threads are getting assigned IDs for deleted threads where the recipients are still in the database (same problem that was found in this trac entry https://buddypress.trac.wordpress.org/ticket/3971)

    I don’t really want to hack the core to fix it, I’d rather just do a SQL query to delete any recipients for threads that don’t exist. Are there any caveats in doing this?

    Ooh, I just discovered that all the old messages don’t have a thread assigned, but they should! This happened during an upgrade from a much older version… I wasn’t involved in that process, so I don’t know quite what happened. I think I can reassign the messages their thread number by looping through the thread message_ids… Is it possible to do that with a SQL query or do I have to use PHP to get the IDs out of the array?

    This must be why the new messages started assigning low value thread numbers. Does the new thread take it’s ID from the thread table or the messages table?

    Philipp
    Participant

    I use this PlugIn: http://bp-tutorials.de/2010/09/private-buddypress

    It’s not updated since a long time but it still works fine for me…

    aces
    Participant

    You could create an empty text file called /wp-content/plugins/walled-garden.php, paste the following into it, then activate the plugin:
    `
    <?php
    /*
    Plugin Name: Buddypress Walled Garden
    Plugin URI: http://www.example.com/
    Description: A brief description of the Plugin.
    Version: 0.1
    Author: http://www.example.com/
    Author URI: http://www.example.com/
    License: A “Slug” license name e.g. GPL2
    */

    function sh_walled_garden()
    {
    global $bp;

    // if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )

    if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) )
    return;

    if( ! bp_is_blog_page() && ! is_user_logged_in() )

    bp_core_redirect( bp_get_signup_page() );
    }

    add_action( ‘bp_init’, ‘sh_walled_garden’ );

    function bp_remove_feeds() {
    remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
    remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
    remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
    }
    add_action(‘init’, ‘bp_remove_feeds’);

    ?>`
    Tested in bp 1.6.1

    The plugin should not have spaces, blank lines, or anything else before “ and use a simple text editor ( like this ) rather than a wordprocessor….

    – – –

    To have a different menu for logged in users is slightly more complicated.

    You need to find the template bit that shows the menu.

    In the current bp-default theme header.php file is the following
    `
    false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>
    `
    which can be replaced by
    `
    <?php
    if ( is_user_logged_in() ) {
    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ” ) );
    } else {
    wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => ” ) );
    }
    ?>
    `
    Then create the secondary menu in the wordpress menu admin…..

    Please backup files and database before trying this out in case there are complications. It would be better to try out on a test/dev site first …..

    SeFi
    Member

    @shawn38 Thanks but I’m already using a theme for my client and I can’t change it…

    @BooneGorges As for shawn38 I’m already using a theme and I’m not a really good programmer so what you’re refering to is to difficult for me :(

    Can’t I find a plugin to do that ? No one ever thought of doing it ?

    Thanks a lot guys !

    Boone Gorges
    Keymaster

    WPMU.org recently had a nice writeup on something similar: http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/

    9087877
    Inactive

    You can used my child theme its only for the BP-Default theme it adds this functionality.
    http://ezwebdesign.wordpress.com/free-stuff/

    #139330
    hkcharlie
    Participant

    @shawn38 that is fantastic, thank you !

    #139289
    9087877
    Inactive

    You can used my child theme its only for the BP-Default theme it adds this functionality.
    http://ezwebdesign.wordpress.com/free-stuff/

    #139288
    @mercime
    Participant

    @mairaj

    – Create a bp-default child theme -> https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
    – Copy header.php from bp-default theme to your child theme folder then remove the search div from the header.php in you child theme folder
    – Create a Page Template -> https://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates and add the code your deleted from header.php replacing the_content tag and upload to your child theme folder in server
    – Pages > Add New and title it whatever you want then choose the template in sidebar then make it private, Admin can access that page anytime.

    #139119
    LIB53
    Member

    Buddypress 1.6, using the BuddyPress Default theme. The user is shown as banned in the Admin > Members list. The user cannot create forum topics, forum replies, or write new updates in the group. In a green box underneath the group description it states “You have been banned from this group.” when that user visits the group. It’s a public group. The banned user can still read everything, and he can reply to activity feed entries.

    This was possible on previous versions of buddypress (1.5.6 i think) and I was wiping and re-installing wordpress and buddypress on two different servers (local and online) both producing the same results with fresh installs. I really had nothing to do that day… My site ended up only using private groups and I thought this was intended so I didnt mention it before.

    #138927
    215
    Member

    @ultimateuser – Ron’s BP Multi Network plugin works with WP Multi Network or their Networks+ plugin, but a third option to create networks is Networks for WordPress which is similar to WP Multi Networks but was last updated more recently in May 2012 – https://wordpress.org/extend/plugins/networks-for-wordpress/

    I just upgraded to BP 1.6 and found that I can’t post activity status updates on a private network anymore using BuddyDev’s BuddyPress Multi Network plugin http://buddydev.com/buddypress/introducing-buddypress-multi-network-plugin-create-multiple-separate-social-networks-on-a-single-buddypress-install/ , but maybe it’s me. I might check out Ron’s plugin again to see how it does with BP 1.6

    What did you end up using?

    #138920
    broniors
    Member

    in researching this I installed the WP jQuery CDN Plugin and it is set as Google Ajax API jQuery CDN
    https://wordpress.org/extend/plugins/wp-jquery-cdn/

    This appears to resolve (temporarily) the problem

    I hope that this helps

    #138911
    broniors
    Member

    Hi .. I think I am having the same problem

    I am running Buddypress 1.6 and WordPress 3.4.1

    I am finding the Add Friend feature is not working and the reply to message functionality (when I try and reply to a message it isn’t working.)

    When I click on Add friend it just appears to remove the button and the friend pending button doesn’t appear and it doesn’t active the friend request

    When I try and reply to a message I type in the message and click on the send reply and it just clears the message window.

    I am not sure how to uninstall/remove the CDN version of jQuery. Can you please point to some instructions on how to do this?

    #138858
    r-a-y
    Keymaster

    Try uninstalling / removing your CDN version of jQuery so it reverts to WordPress’ version of jQuery. See if that fixes things.

    #138856
    Joseph8th
    Member

    I’m having a similar problem. I’m running BP 1.6 on WP 3.4.1 network.

    I can write new PMs to any member and it all works great, but when I hit ‘Send Reply’ button the text box empties itself out and the reply is never actually sent as a message.

    I used Firebug and discovered that the POST data is all there, but the AJAX/jQuery isn’t doing it’s job. Here’s why I see in the Firebug console:

    `POST http://bannedatheists.us/wp-admin/admin-ajax.php`

    which is supposed to be handled by `http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js?ver=3.4.1`

    Moreover, I just noticed that the jQuery ‘Friend’ buttons aren’t working, either… URG! I’ve been disabling plugins like a madman but so far nada. HELP!

    #138821

    I mean the notifications that appear on the buddypress bar. When someone comments/replies to my status updates on activity I do not get a notification. However I do get notifications for private messages, friendship requests and mentions.

    Hopefully that made it clearer to understand my problem.

    Paul Wong-Gibbs
    Keymaster

    It’s not possible out of the box. You could set it with some custom code. You could also raise this as an enhancement ticket on BuddyPress.trac.WordPress.org, as it’s possible to do this with regular HTML tags, and there might be an argument for making this possible with BuddyPress, too.

    k12onos
    Participant

    Hi, I managed to recreate the problem on a new install.

    This happens when commenting on updates of a private group in the activity stream. It does not affect hidden groups updates though.

    Should I submit a bug report?

    k12onos
    Participant

    Hi, I disabled all my plugins but the same thing still happens.

    BUT, I managed to find more information. This happens only on status updates on Private Group.

    So is it possible that it’s something like, the BuddyPress didn’t check for the user’s permission when the ajax comment is posted, so when the comments are posted it is treated as “hidden/private” to the person posting it?

    It’s a wild guess, but can someone with private groups & BuddyPress 1.6 help confirm this? I’m wondering if it’s just me or does it affect everyone.

Viewing 25 results - 1,851 through 1,875 (of 3,463 total)
Skip to toolbar