Search Results for 'private'
-
AuthorSearch Results
-
August 27, 2012 at 12:27 am #140319
In reply to: Registrater Users Only
aces
ParticipantAugust 26, 2012 at 12:04 pm #140269In reply to: Users can’t reply to private messages
9087877
InactiveDo you have plugins other than BuddyPress installed? If so then try disabling each one until you find the offender.
August 26, 2012 at 3:30 am #140236Devilish Concept
ParticipantSimpler way is to install wordpress access control, this adds a option to every page to make it avalible to be viewable by only vistitors, logged in users and even has a age control on it, you can all set a redirect page incase somone types in the url as this will also remove any page which is hidden from the viewer type from the menu, check it out its awesome
August 25, 2012 at 8:56 pm #140211In reply to: Filtering Activity Stream
9087877
InactiveTry my plugin here: https://buddypress.org/community/groups/buddypress-friendpress/ see this is what your after. After installation, and activation go to dashboard/settings/ bp friendpress and change the setting to current user / friends activity. Just be aware it also make buddypress specific pages private so only members can view them. make sure to read the readme.txt regarding group forums or sitewide forums and make changes appropriately. If you do not want the buddypress specific pages private you can go in the bp-friendpress.php file and comment out the part that says “The walled garden.” Hope this helps!
August 25, 2012 at 10:24 am #140187In reply to: Where are the RSS feeds ?
danbpfr
ParticipantThe reason is that i want to understand why mysite.com/comments/feed/ contains only comments used in a private group. Despite this the feed is public.
While searching around this, i found what i mentionned above. Just curiosity in fact, to learn from.
Thank’sAugust 24, 2012 at 7:03 pm #140159ericreynolds007
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.
-
AuthorSearch Results