Search Results for 'private'
-
AuthorSearch Results
-
March 13, 2010 at 6:06 pm #68135
In reply to: Group Documents 0.3.0 Released
Peter Anselmo
ParticipantThanks for the feedback, I’ve had someone else suggest that as well. My thinking is that documents are currently consistent with the group access levels. For example, if you can seen forum topics and members of public groups, you should be able to see documents. If there’s group content you only want group members to see, then it should be a private group.
I see your point for encouraging outside users to sign up, I’ll consider adding an option for that behavior.
@pjnu, Yes, it won’t be an issue anymore. Thanks for your patience.
March 12, 2010 at 10:44 pm #68044In reply to: WP + BuddyPress Private Profile Fields
Pedro Miguel
Participanttheres already a plugin who does that, ,you can use the plugin or check the source and adapt to your needs.
March 12, 2010 at 6:33 pm #68003In reply to: WP + BuddyPress Private Profile Fields
e_mcpartlin
ParticipantWas this ever solved? I am trying to accomplish the same thing – make some profile fields private. Thanks!
March 11, 2010 at 7:00 pm #67815In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
ParticipantAnton sent me a private message that the issue above was a problem with his child theme that was breaking Links.
March 11, 2010 at 1:23 am #67684In reply to: Private Message Spam and Abuse
DjZoNe
ParticipantI don’t know if you’ve found a treatment, for this, but I’d suggest a plugin named HashCash from Donncha:
March 11, 2010 at 1:13 am #67682In reply to: How to solve the problem of alignment in practice?
Fernando Marques
ParticipantHello friend I can not really send you the link, and visited it at any time, and wanted to make a surprise, with the change of thema
I am sending you a private message to explain a second solution,
but now on the explanation of step 3, I looked and I swear to you that I could not understand where change, he even left an example, but I’ve never seen an example in practice, the funny that I go to a Web extensive study to learn everything, but for now I need help
March 7, 2010 at 2:59 pm #67095In reply to: how do i disable members from creating groups?
rich! @ etiviti
Participantonly problem with removing the link:
<?php echo bp_get_root_domain() . '/' . BP_GROUPS_SLUG . '/create/' ?>
someone could still access the url directly to start the process.I went ahead and created a plugin (waiting on repo request on wordpress.org) to disable the steps and show a ‘new groups creation is closed’ message. Also added in a midlevel-cap to allow another set of users the ability to create private/hidden + w/forums. I may expand this to restrict other steps in the group creation process (as other plugins using the group extension api may add in their own step)
Basically the plugin removes the $bp->groups->group_creation_steps – adds in a custom position 0 step to display a closed page.
March 6, 2010 at 9:33 pm #67046carolinaforestonline
Participantactually you can create a login page in 1.2.1 and have your site private….. once they pass credentials, they will be allowed inside.
March 6, 2010 at 8:35 pm #67039In reply to: WP + BuddyPress Private Profile Fields
freebee1989
MemberOkay, thanks! Anyone have any idea o how this can be done now?
March 6, 2010 at 7:43 pm #67036In reply to: WP + BuddyPress Private Profile Fields
r-a-y
KeymasterThat code snippet probably applied to an older version of BP.
March 6, 2010 at 6:34 pm #67031r-a-y
KeymasterCool! Glad it worked for you, Jfcarter.
Make sure to green light the thread!
March 6, 2010 at 5:07 pm #67019jfcarter
ParticipantThanks, r-a-y! Am giving it a try now…
Worked like a charm!! Many thanks.
March 5, 2010 at 10:55 pm #66948Dwenaus
Participant@myqolik and @lautering – I believe my plugin does what you need. You mention wanting to enable people to read the content without joining the group – If you use my plugin then this is possible. When you set the group to Announcement-only, then ONLY admins and moderators can add content. The group can be public, private or even hidden. And for a public group, it doesn’t matter if the members join or don’t join, they still can’t add any content. So it really doesn’t matter if they join or don’t they still can’t write a thing. The benefit of joining the announcement group is that with email notifications plugin, you can turn that group into a email newsletter.
Does that match what you are looking for?
March 5, 2010 at 1:05 am #66786r-a-y
Keymasteris_site_admin() is the function but will probably be deprecated soon when WP 3.0 comes out.
Try this out:
<?php if ( is_user_logged_in() && !bp_is_my_profile() && function_exists( 'bp_send_private_message_link' ) && ( my_bp_is_friend() || is_site_admin() ) ) : ?>
—
re: direct url to private message… you’ll have to modify the /bp-themes/bp-default/members/single/messages/compose.php file in your child theme to do a check for the username and if the logged-in user is friends with that username.
If the username is friends with the logged-in user, show the form to complete the message; if not a friend, don’t show the form.
March 5, 2010 at 1:00 am #66784shaisimchi
ParticipantThere is a function that checks if a user is a site admin (can’t remember the name now but if you can’t find it let me know). you can use it to exclude the admin this allowing him to do send the message.
Thanks,
Shai
March 5, 2010 at 12:06 am #66777intimez
ParticipantI did what you mentioned but the code in bp-custom.php is now showing up at the top of the page visible to all. Maybe I missed something else?
edit: ooops, my mistake. It’s working now but I can PM by going direct URL.
edit2: how to enable so admin can still PM w/o being friends?
March 4, 2010 at 6:21 pm #66723r-a-y
KeymasterTry this out in /wp-content/plugins/bp-custom.php:
function my_bp_is_friend() {
global $bp;
if (friends_check_friendship($bp->loggedin_user->id,$bp->displayed_user->id) )
return true;
return false;
}Then copy /bp-default/members/single/member-header.php to your child theme.
Next, edit:
<?php if ( is_user_logged_in() && !bp_is_my_profile() && function_exists( 'bp_send_private_message_link' ) ) : ?>
to:
<?php if ( is_user_logged_in() && !bp_is_my_profile() && my_bp_is_friend() && function_exists( 'bp_send_private_message_link' ) ) : ?>
March 4, 2010 at 5:17 pm #66713In reply to: Bug: "Recent Site Wide Posts" Widget
paulhastings0
ParticipantAre the blogs that are posting public or private?
March 4, 2010 at 2:23 pm #66686rich! @ etiviti
Participantcheck out this function in bp-friends.php
function friends_check_friendship_status( $user_id, $possible_friend_id ) {
that will return a string depending on the friend status
March 4, 2010 at 1:05 pm #66676kurtbp
MemberBump.
Anyone made any progress with this?
March 4, 2010 at 12:42 pm #66674abcde666
Participantjust change the Group-settings from “Public Group” to “Private Group”.
March 3, 2010 at 9:18 pm #66577arghagain
ParticipantI’m so happy that now I got activity problem solved which I had to follow the suggestion at http://premium.wpmudev.org/forums/topic/buddypress-upgrades-with-multi-db#post-28120. Unfortunately, I couldn’t solve the broken message problem where a member or even admin cannot send a private message to another member. Whenever trying to send a private message to a friend (which had been accepted as a friend already), I get this error “There was an error sending that message, please try again.”
Anyone has any idea how to go about fixing the private message problem?
March 3, 2010 at 7:02 pm #66559abcde666
ParticipantI would be already happy if the already existing Private-Groups would work properly……
March 3, 2010 at 5:19 am #66472In reply to: Setting Roles for Registered Users
jalien
ParticipantActually thanks for the post. This is a something I have been doing (trying to do) since wpmu 1.0. I use WPMU / Buddypress with young (elementary school students 6-12 years old) so simplicity is a must. The New Blog Options plugin (if it works as it says it will) would make make perfect customization possible. Here are a list of WPMU plugins that I use or have used that might help. I am in the process of retrying everything to achieve exactly what you are trying to do. Let everyone on the forums know how your testing goes. Hope this isn’t too long. I added links to save time since there are sometimes plugins with similar names).
New Blog Options – this one is fairly new (still beta), and I haven’t tried it extensively yet, but it will allow you to clone on blog setup with it’s plugin options etc. to all new blogs.
https://wordpress.org/extend/plugins/default-blog-options/
Limit Blogs per User – if you don’t want them making more than one blog (set to 2, one is the main buddypress blog and 2 is their own blog)
https://wordpress.org/extend/plugins/limit-blogs-per-user/
WPMU New Blog Defaults – this will allow you to restrict menus, change default links, etc under the Options in the Site Admin menu
https://wordpress.org/extend/plugins/wpmu-new-blog-defaults/
Members – this one takes over where the old Role-manager plugin left off. Haven’t had time to check it out yet, but if you could use this with New Blog Options it would allow you to very finally tune what your users could do and see.
https://wordpress.org/extend/plugins/members/
Adminimize – again I haven’t played with this for a while, but if you could use it with New Blog Options, then you could simplify the look of the menus for your users too.
https://wordpress.org/extend/plugins/adminimize/
Default User Role – will set the user role when a new blog is created
https://wordpress.org/extend/plugins/wpmu-default-user-role/
Plugin Manager – does what it says, allows you to manage which plugins users can set, which ones are automatically turned on, and which regular users cannot see
http://wpmudev.org/project/wpmu-plugin-manager
download link is: http://wpmudev.org/download/946613807_mp-plugin-manager.php
Of course with young people you might want to consider a privacy plugin like:
More Privacy Options – this doesn’t work with the feed on Buddypress, but if you search the forums it can be made to work or you can use the following plugin for feed privacy (Buddypress privacy should be coming soon)
http://wpmudev.org/project/More-Privacy-Options/
download link is: http://wpmudev.org/download/999830698_ds_private_blog.php
BP MPO Activity Filter – This plugin, BP MPO Activity Filter, does just what the name suggests: it filters BuddyPress activity feeds. Used with More Privacy Options.
https://wordpress.org/extend/plugins/bp-mpo-activity-filter/
March 2, 2010 at 8:16 pm #66399In reply to: After update private & hidden Groups empty
Michael Berra
ParticipantHi Erich,
i don’t think it has something to do with that Ticket…
In my Case ALL the old group-activity does not show anymore… ( i had at last Forums disabled)
The Strange thing to me is, that I seem to be the only one experiencing this, although it happens on two total different setups. They only have in common, that both were setup in the very early stages of BP…
-
AuthorSearch Results