Search Results for 'private'
-
AuthorSearch Results
-
August 24, 2012 at 7:03 pm #140159
ericreynolds007
ParticipantGood 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?
EricAugust 24, 2012 at 3:08 pm #140137Alexander
ParticipantCool, 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.
August 24, 2012 at 3:01 pm #140136aces
ParticipantAugust 23, 2012 at 1:19 pm #140060frank tredici
MemberSorry, it’s behind a private firewall. Users need to authenticate through our enterprise-wide authentication system.
August 22, 2012 at 11:58 am #139979In reply to: Group members list
hkcharlie
ParticipantSomething 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
August 17, 2012 at 3:21 pm #139667In reply to: Private Message Spam and Abuse
Ben Hansen
Participantdoes 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.
August 16, 2012 at 2:02 am #139568kristarella
ParticipantI’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?
August 16, 2012 at 12:04 am #139562Philipp
ParticipantI 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…
August 15, 2012 at 2:18 pm #139519aces
ParticipantYou 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.1The 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 …..
August 15, 2012 at 1:49 pm #139518SeFi
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 !
August 14, 2012 at 4:43 pm #139429Boone Gorges
KeymasterWPMU.org recently had a nice writeup on something similar: http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
August 14, 2012 at 3:18 pm #1394039087877
InactiveYou can used my child theme its only for the BP-Default theme it adds this functionality.
http://ezwebdesign.wordpress.com/free-stuff/August 14, 2012 at 12:30 am #139330In reply to: Private buddypress 1.5.6
August 13, 2012 at 5:42 pm #139289In reply to: Private buddypress 1.5.6
9087877
InactiveYou can used my child theme its only for the BP-Default theme it adds this functionality.
http://ezwebdesign.wordpress.com/free-stuff/August 13, 2012 at 5:37 pm #139288In reply to: Hiding header search box other than specific page
@mercime
Participant– 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.
–August 11, 2012 at 2:03 am #139119In reply to: Banned user can still reply
LIB53
MemberBuddypress 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.
August 9, 2012 at 3:01 am #138927In reply to: BuddyPress Multi Network
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?
August 9, 2012 at 1:47 am #138920In reply to: Answering Private Messages Isn’t Working
broniors
Memberin 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
August 9, 2012 at 12:43 am #138911In reply to: Answering Private Messages Isn’t Working
broniors
MemberHi .. 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?
August 8, 2012 at 7:02 pm #138858In reply to: Answering Private Messages Isn’t Working
r-a-y
KeymasterTry uninstalling / removing your CDN version of jQuery so it reverts to WordPress’ version of jQuery. See if that fixes things.
August 8, 2012 at 6:31 pm #138856In reply to: Answering Private Messages Isn’t Working
Joseph8th
MemberI’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!
August 8, 2012 at 2:16 pm #138821In reply to: Notifications do not seem to work
Carlos Ferreira
MemberI 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.
August 8, 2012 at 2:15 pm #138819Paul Wong-Gibbs
KeymasterIt’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.
August 8, 2012 at 12:04 pm #138784k12onos
ParticipantHi, 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?
August 8, 2012 at 3:56 am #138747k12onos
ParticipantHi, 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.
-
AuthorSearch Results