Search Results for 'private'
-
AuthorSearch Results
-
June 27, 2012 at 10:19 pm #136503
In reply to: Use with young students
Paul Wong-Gibbs
KeymasterFriends should. On these blogs — is the Privacy setting set to public or private? i.e. this screen https://codex.wordpress.org/File:options-privacy.png
They need to be public (‘allow search engines to index this site’) for it to be shared in activity.
June 27, 2012 at 3:19 pm #136480In reply to: Groups private messages?
frostdawn
MemberAlso, the reason I was using the ‘Groups’ plugin was soley so I could have group exclusive content and nothing else. I can sets all kinds of nice access and permissions rules, but there is a disconnect between the plugin’s features and the built in groups feature of BP, so the results fall far short of desired.
June 27, 2012 at 3:16 pm #136479In reply to: Groups private messages?
frostdawn
MemberHi bollocks187-
I was just a little confused how groups was intended for use within WordPress/BuddyPress. To give you some insight as far as where I’m coming from, I’m moving from a Groupsite environment. In that environment, you can have ‘x’ number of groups. The groups can by hidden just like in WP/BP, but can have their very own content exclusive to them, which is hidden from non-members of that group (as expected). Likewise, members of a given group can communicate freely between each other. I was looking for a feature set within WP/BP that mimicks that behavior. The other thing missing is a peer recognition feature- kind of like a way for one user to endorse another. (another Groupsite feature). Think of this as a kind of letter of recognition from one user to another, so anyone visiting the endorsed member’s profile would see a senior member/administrator endorses/vouches for/recommends that user. I’ve been working with a messload of different plugins with varying levels of success/failure (far more failures than successes) and was getting a little frustrated -iterative testing to ensure a new plugin doesn’t break existing working plugins and trying to determine the UI for a new plugin since it’s often a sorely overlooked feature for so many developers.I’m now looking into the possibility of using groups forums to address some of what I want to do, but am hoping that by doing so, it won’t confuse end users by having them try to contend with two separate types of forums – one open and public, and the other being ‘x’ number of private instances, one for each hidden group.
June 27, 2012 at 8:39 am #136459In reply to: Numeric Usernames and Private Messaging
Robl987
MemberThanks Paul. Ticket Created: https://buddypress.trac.wordpress.org/ticket/4305
June 27, 2012 at 2:14 am #136453In reply to: Groups private messages?
bollocks187
MemberJust jumping in out of the blue.
Why would you need “yet” another Plugin for Groups when you already have a groups feature in buddypress out of the box. Even if you can disable the “group forums” feature that kind defeats the purpose of having a group in the first place.
Unless of course itthinx is not happy with the Buddpress Groups capabilities hence the “groups” plugin. Also why would the Buddypress team want to accommodate an interact with a feature they already have – especially a plug in that has a few thousand downloads. Just askin 1
June 26, 2012 at 10:18 pm #136447In reply to: Groups private messages?
frostdawn
MemberThanks Paul-
Okay, so that begs the question- what are groups used for within WordPress/BuddyPress? If you deactivate forums, there’s not much left. You can’t contact just the people in that group. And I’m still looking for a good plugin to handle making content pages exclusive to certain groups. I’ve tried ‘Groups’ by itthinx, but there is a big disconnect between the actual BuddyPress groups and the groups within the ‘Groups’ plugin. So if I have a pre-existing group, the ‘Groups’ plugin doesn’t recognize it. If I name an existing group within the ‘Groups’ plugin, there is no members associated with it (since it is treated as a new group, but that can only be accessed via the plugin) so security doesn’t really apply. Any light you can shed on this would be appreciated.Thanks
June 26, 2012 at 9:32 pm #136444In reply to: Groups private messages?
Paul Wong-Gibbs
KeymasterNo, it’s not (out of the box, anyway).
June 26, 2012 at 8:39 pm #136439In reply to: Groups private messages?
frostdawn
MemberAnyone at all?
June 26, 2012 at 6:20 pm #136428In reply to: Groups private messages?
frostdawn
MemberChecking back in- my original post got lost several pages in the jumble and I hadn’t heard anything. Anyone have any feedback about PMing groups?
June 26, 2012 at 5:44 pm #136426In reply to: Numeric Usernames and Private Messaging
Paul Wong-Gibbs
KeymasterSounds like you’re might have found a bug. Please would you make a report on http://buddypress.trac.WordPress.org ? thanks
June 26, 2012 at 12:58 am #136402In reply to: Warning: Cannot modify header information
Bruce
MemberThanks. I had an old plugin — wordpress private. Switched to Private Buddypress. Works now.
June 25, 2012 at 8:55 am #136368In reply to: How do I disable adminbar for all users?
foobool
Member<?php
/**
* Admin Bar
*
* This code handles the building and rendering of the press bar.
*//**
* Instantiate the admin bar object and set it up as a global for access elsewhere.
*
* To hide the admin bar, you’re looking in the wrong place. Unhooking this function will not
* properly remove the admin bar. For that, use show_admin_bar(false) or the show_admin_bar filter.
*
* @since 3.1.0
* @access private
* @return bool Whether the admin bar was successfully initialized.
*/
function hide_admin_bar() {
return false;
}
add_filter( ‘show_admin_bar’, ‘hide_admin_bar’ );function _wp_admin_bar_init() {
global $wp_admin_bar;if ( ! is_admin_bar_showing() )
return false;/* Load the admin bar class code ready for instantiation */
require( ABSPATH . WPINC . ‘/class-wp-admin-bar.php’ );/* Instantiate the admin bar */
$admin_bar_class = apply_filters( ‘wp_admin_bar_class’, ‘WP_Admin_Bar’ );
if ( class_exists( $admin_bar_class ) )
$wp_admin_bar = new $admin_bar_class;
elseJune 23, 2012 at 5:11 pm #136297valuser
ParticipantMany Many thanks. Thrilled to bits.
June 23, 2012 at 10:03 am #136273Mathieu Viet
Moderator@creaturis you’re welcome & thanks
June 22, 2012 at 4:44 pm #136242creaturis
ParticipantI always make stupid mistakes like these.
. I really should start reading “php for dummies” .works amazingly well now, and thank you for explaining the function the 9 and 2 has. you got great coding skills.
June 22, 2012 at 9:44 am #136230creaturis
Participantthanks a lot. yup that was pretty much what i had in mind. a profile that only friends can see
.I tried the function. but doesn’t seem to work. Probably my fault. anyways I changed the 9 and 2 id to the categories I wanted removed from activity but they still show up. do I have to change something else in this code also?
I really appreciate that you wrote and/or shared this code btw.
June 22, 2012 at 2:00 am #136213In reply to: Users can’t upload their avatar when on Mac
tjbrewers
Participant@shanebp I’m working on using Aurigma Up on our private site for the change-avatar.php file. If you don’t mind me asking you:
1. How did you handle ‘uploadUrl’ request? Did you send it to an upload file and process it there? Or did it bring it back to the change-avatar.php file?
2. Then when you redirected it back to change-avatar, how did you get image processed?Thanks for your help. Once I get it working, I’ll writing it so everyone can see how to do it.
June 21, 2012 at 6:23 am #136150i25sa
MemberHi, I found the problem – the plugin WP Buddypress private community was conflicting with it, so I deactivated the plugin and now the link goes through.
Thanks Mercime, Queenieb & Odofincaleb for all your help, really appreciate it!
June 20, 2012 at 7:14 pm #136117In reply to: Improved Support for BuddyPress
Hugo Ashmore
Participantactually didn’t take it as criticism, it’s just a difficult area support forums for OS apps are run by volunteers, the ones that can answer questions effectively are more than often working pros so haven’t that much time for in depth help.
There are a few private forums or sites dedicated to BP you could try buddydev or bp-tricks? but not sure of the level of support those can offer.
June 18, 2012 at 10:36 pm #136034In reply to: Groups private messages?
frostdawn
MemberAlmost forgot:
WordPress v 3.3.1
BuddyPress v 1.5.4June 16, 2012 at 11:35 am #135901In reply to: question about Group filtering
83 Oranges .com
MemberHi Boone!
I used your code to show only Public groups on the groups directory page however my issue is that when people use the search box on the directory, even private groups show up! Can you please help me stop private groups from showing up in the search results as well?
June 15, 2012 at 3:39 am #135803aces
ParticipantYour welcome…..
June 15, 2012 at 1:37 am #135795admin25
ParticipantHello aces,
I ran across the code and I thought it was a “this will work with any bp install kind of thing” clearly I was wrong.Your code worked perfectly.
Thank you.June 15, 2012 at 12:38 am #135793aces
ParticipantYou don’t say what your add action is hooked to ( or what the line number refers to ). Do you have a `’walled_garden’` hook in your template?
I would suggest trying the following (I use something similiar but allow access to groups and forums):
`function sh_walled_garden()
{
global $bp;if( bp_is_register_page() || bp_is_activation_page() )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}add_action( ‘bp_init’, ‘sh_walled_garden’ );
`
I also substitute `add_action( ‘wp_loaded’, ‘sh_walled_garden’ );` on a different site….
`bp_init` and `wp_loaded` are “native” to buddypress/wordpress so you don’t need to create your own template hook….This is in a bp-custom-php file – using buddypress v1.5.5 as I haven’t upgraded to 1.5.6 yet….
June 13, 2012 at 11:32 pm #135748In reply to: function to send a private message
kodestar
MemberIgnore that, I had a look at the messages_new_message function and realised it should be sending a notification so I guessed the issue was I was testing using the same id for uploader and denyer, i changed to another uploader and it worked perfectly

-
AuthorSearch Results