Search Results for 'private'
-
AuthorSearch Results
-
July 4, 2011 at 11:28 am #115662
In reply to: HELP WITH HEADER
Hugo Ashmore
Participant@megt12 on a public help forum it’s bad form to expect or try and move a topic away to private messaging, help given is always thought to perhaps be useful to others stumbling across the thread in searches.
Defines go in your wp-config.php file.
You will definitely be needing to explain the steps you have taken thus far and the point you are at if it’s going to be possible to provide meaningful help.
July 3, 2011 at 8:03 pm #115622Bristol CI
ParticipantGreat, that plugin is perfect thank you!
All I need to work out now is how to change what template the buddypress pages (groups, forum, etc) use – any ideas?
SaskiaJuly 3, 2011 at 7:34 am #115588embergermedia
MemberI use S2member plugin. It will handle what you are asking for. Plus a whole lot more. Be sure to read all the documentation.
July 2, 2011 at 11:53 am #115559In reply to: Buddypress as Private Section of WordPress Site
Hugo Ashmore
ParticipantClosing thread then.
July 1, 2011 at 9:23 pm #115549In reply to: Buddypress as Private Section of WordPress Site
pcwriter
ParticipantOops! You have a duplicate post that is answered here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-section-as-private-section-of-wordpress-site/July 1, 2011 at 9:19 pm #115548pcwriter
ParticipantThe s2member plugin will do everything you want, and a whole LOT more too! Watch out though, you can easily get lost in all the features and options, so take it slow and follow the startup instructions closely. But everything is very well documented, and there’s a pretty good help forum available if you get stuck.
https://wordpress.org/extend/plugins/s2member/There is also a new bridge plugin for s2member (or any other membership plugin) that enables you and your users to create private profiles that become visible to certain membership levels. It automatically inserts an “Upgrade” link in member profiles that displays to users who don’t yet have view permissions.
https://wordpress.org/extend/plugins/buddypress-profiles-manager/July 1, 2011 at 4:20 pm #115530In reply to: simple reCaptcha for Buddypress /register page
NoahY
MemberI also use BWP-recaptcha for my other blogs on the network, so I can access the pub and priv keys from there, like so:
global $bwp_capt;
$publickey = $bwp_capt->options;and
global $bwp_capt;
$private_key = $bwp_capt->options;That way the keys are kept in one place.
July 1, 2011 at 10:39 am #115511In reply to: Members’ privacy: how can I hide members’ profiles?
aces
ParticipantDerived from the above link, I use the following in a bp-custom.php file to exclude users that are not logged in from seeing the activity or members areas.
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 ) )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( $bp->root_domain .'/'. BP_REGISTER_SLUG );
}
add_action( 'get_header', 'sh_walled_garden' );
In bp-custom.php the above needs to be placed in a plain text file with “ at the end of the file….June 28, 2011 at 12:27 pm #115341In reply to: BP private community trouble shoot
kardingsungkit
Memberpls anyone??
June 28, 2011 at 8:05 am #115331In reply to: restrict profile views
Hugo Ashmore
ParticipantFirstly searching the site will possibly throw up past threads on the subject, try: ‘private profile’
Or you could check how certain aspects of bp work that only kick in when the user has logged in ( look in sidebar.php for examples of logic that checks if a user is logged in) using that logic you could take the main home page for members profiles and wrap it a conditional query that says ‘show: member profile if user is logged in else: write a polite message explaining profiles are restricted to members and provide a link to registration page.
June 28, 2011 at 2:05 am #115324In reply to: Private Messaging throws error
a_johnson
MemberUpdate: I installed the “BuddyPress Private Messages for Friends Only” plugin by r-a-y. It throws an error when the Admin account sends a PM “You are not friends with the person(s) you are attempting to send a message to. Your message has not been sent.” but the two accounts are friends. The user can send a PM to the admin successfully and the admin can reply successfully to that PM only.
HTH.
June 27, 2011 at 1:29 am #115248In reply to: “Send Private Message” auto fill problem
r-a-y
KeymasterSounds like you’re using a caching plugin like W3 Total Cache.
If you have it enabled, disable it.Right now, there are a few issues with using object caching plugins.
Stay tuned to the following ticket for updates:
https://buddypress.trac.wordpress.org/ticket/2636June 25, 2011 at 8:26 am #115198In reply to: too many redirects
@mercime
ParticipantPost in plugin’s forums https://buddypress.org/community/groups/buddypress-private-community/forum/
June 22, 2011 at 9:31 am #115038In reply to: Send private message autofill unpredictable
Stigmartyr
MemberUpdate: I read the bp-core.php file and created a file called bp-custom.php and put this in my /plugins folder as instructed with the username_compatibility code as instructed above and it’s still not working for me. That doesn’t seem to have done anything and neither is editing the wp-config.php.
I’ve made 4 test users and autofill doesn’t find anything.
June 21, 2011 at 9:27 pm #114981In reply to: Sending attachments with Private messages
r-a-y
KeymasterIt’s possible, but the plugin would have to create its own tables to store the data. The Group Documents plugin that Dennis mentioned does something similar codewise and can be used as a jumping off point.
It would be better if BP had a dedicated meta table for PMs like the activity component. Then you could easily add this time of information without creating a separate table. I created a ticket here about this:
https://buddypress.trac.wordpress.org/ticket/3083June 21, 2011 at 9:08 pm #114975In reply to: Send private message autofill unpredictable
Stigmartyr
MemberHello all – I ran into this issue as well, and tried using the code fix in my wp-config.php file but it’s not working. Also I cannot find bp-custom.php anywhere in /plugins/buddypress – was it moved or renamed? Do I still need to add it there?
However, even with the wp-config.php custom setting in place I cannot even auto-fill messages to test users without dots in their names. Oddly it will autofill the admin’s nickname but that’s it..
June 21, 2011 at 8:05 pm #114970In reply to: Sending attachments with Private messages
Stigmartyr
MemberDitto
June 17, 2011 at 1:41 pm #114699In reply to: Error trying to add new user to a private message
carstiee09
ParticipantHello iwazaru,
you have to past the code in the: bp-messages-cssjs.php
try this code:
<?php
function messages_add_autocomplete_js() {
global $bp;// Include the autocomplete JS for composing a message.
if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
add_action( ‘wp_head’, ‘messages_autocomplete_init_jsblock’ );wp_enqueue_script( ‘bp-jquery-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocomplete.js’, array( ‘jquery’ ) );
wp_enqueue_script( ‘bp-jquery-autocomplete-fb’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocompletefb.js’ );
wp_enqueue_script( ‘bp-jquery-bgiframe’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.bgiframe.min.js’ );
wp_enqueue_script( ‘bp-jquery-dimensions’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.dimensions.js’ );
}}
add_action( ‘wp’, ‘messages_add_autocomplete_js’, 2 );function messages_add_autocomplete_css() {
global $bp;if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
wp_enqueue_style( ‘bp-messages-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/css/autocomplete/jquery.autocompletefb.css’ );
wp_print_styles();
}
}
add_action( ‘wp_head’, ‘messages_add_autocomplete_css’ );function messages_autocomplete_init_jsblock() {
global $bp;
?>jQuery(document).ready(function() {
var acfb =
jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’});jQuery(‘#send_message_form’).submit( function() {
var users = document.getElementById(‘send-to-usernames’).className;
document.getElementById(‘send-to-usernames’).value = String(users);
});
});<?php
}i you have installed buddypress via a subdomain.
Carsten
June 16, 2011 at 2:03 pm #114635In reply to: Error trying to add new user to a private message
carstiee09
Participanti have the same problem…
June 14, 2011 at 11:57 pm #114531In reply to: Advice: BuddyPress existing WordPress Blog
LPH2005
ParticipantYou might start out small. Install BuddyPress and enable just the activity stream; disable everything else. Make sure that the theme css works well with the activity stream. You’ll need to install the BuddyPress template pack. After you are satisfied with the activity stream then change WP install to multi-site. You’ll want to lock it down so that you control creation of blogs – so that you don’t have to deal with splogs. Once you have that working then you can add a few other BP features – private messaging, etc.
June 14, 2011 at 2:18 pm #114493In reply to: Sending attachments with Private messages
Reboot
MemberI have been looking for PM attachments as well! Would love to have that feature.
June 14, 2011 at 11:06 am #114488In reply to: Sending attachments with Private messages
jonhorner
MemberThanks for the reply. Been looking at some group docs extensions. I would also need one to allow users to upload and share documents with each other outside of groups. Will have a go at developing one but don’t want to repeat work if it’s already been done.
June 13, 2011 at 7:29 pm #114452In reply to: Sending attachments with Private messages
dennissmolek
ParticipantThere isnt a plugin I know about, but there are a few for group docs and things like that..
June 10, 2011 at 12:05 am #114255In reply to: Buddypress is Not my Buddy… :o(
stwc
ParticipantBP is CPU and memory-hungry on top of regular WP requirements. Depending on what web host you’re using, if you’re on a shared hosting plan, it may just be dieing due to hard limits on resources. I ran a small BP install (along with other sites) on a Dreamhost shared account for while, but have since moved to a virtual private server, because, well: it’s heavy.
That may or may not be the problem.
June 9, 2011 at 3:33 pm #114228In reply to: Group Feed Activity
Scotty501
MemberOK I had aply but still need some help please. What I have done followed a hack from another thread by @r-a-y to move the activity thread along the tabs and make the forum one home – so at least when people look at the group it does not confuse them. This along with making the thread private means that the Main Activity thread does not get cluttered with group posts. Not ideal – but will have to do.
This though causes another issue – if you click Group Directory – you get no topics found – further confusion to the users. If I turn off Group Directory in the settings, the button still remains – but if you click the button it goes to the site home page – more confusion to users.
Can anyone help me my problem another way?
Seems Groups are not very well thought through

-
AuthorSearch Results