Search Results for 'private'
-
AuthorSearch Results
-
October 7, 2010 at 7:50 pm #94521
In reply to: Change sections names? Groups management?
Paul Wong-Gibbs
KeymasterWon’t the built-in “private” group type do?
October 6, 2010 at 10:11 pm #94407Maryke van Rensburg
ParticipantIs the plugin compatible to wp 3.0.1 and new buddypress?
October 6, 2010 at 4:39 pm #94374In reply to: Display email on profilepage
blauweogen
ParticipantHi, I am interested in people who are NOT login in (ie people browsing) to be able to send an email to a member from the member profile page. I was looking for a way to put an email form that does not show the members mail in the code, so it can’t be seen by bots or in the source. I considered trying to use the private messaging system in buddypress. Anyone have any ideas?
Essentially, Members pay to be on the site and set up a profile. Regular people (customers) can contact them without knowing the email of the member.October 4, 2010 at 11:03 pm #94225Beck B
ParticipantAny takers? Or redirectors, even?
October 3, 2010 at 9:03 am #94104Roger Coathup
Participantalgunas cosas:
[es tan temprano – no puedo escribir mi respuesta en castellano]
1. You should not change the core BuddyPress files (e.g. bp-activity-templatetags.php). If you do this, you will make it much harder to upgrade your site.
2. If you want to show all activity items on the home page (including the hidden items), you can do this in your theme files (without changing the BuddyPress core files):
– Have you built your own child theme? If not, check the ‘docs’ section of this site for information
– In the activity_loop file in your child theme, include the parameter (‘show_hidden’=>true) in the call to bp_has_activities()3. No, it’s not a bug to let you reply to an activity item:
– The default logic for privacy / hidden decides whether an activity item is shown in the stream. By default, private / hidden items wouldn’t be shown. You have over-ridden this logic, by changing the template tag to show all items regardless of whether they are hidden or not
– Once an item is shown, you can reply to that item (unless it is a blog or forum item with replies disabled)4. If you want to show hidden / private items, but disable replies to them if the member is not in the group:
– Try adding an additional check for group membership in the activity-meta section of entry.php in your default theme. I’m not sure if there is enough information in the activity item to let you do this
October 2, 2010 at 4:28 pm #94039In reply to: Buddypress forums not working
christofian
ParticipantI tried making the group completely public and private: didn’t work.
September 30, 2010 at 4:24 pm #93890In reply to: private messaging broke on 1.2.4 upgrade
paulhastings0
Participant@owrede Make sure that you’re using BP 1.2.5.2
September 30, 2010 at 3:55 pm #93879In reply to: private messaging broke on 1.2.4 upgrade
Oliver Wrede
ParticipantThe problem is still existing…
September 25, 2010 at 1:32 am #93351In reply to: Article Mod for BuddyPress or WordPress?
@mercime
Participant@jimsnaps “So is there no way to use buddypress, block out what’s not needed, and add an article mod? “
I answered based on your requirements, and you mentioned forums were optional
No intention to limit you at all, just keeping it simple and clear. Of course you could install BuddyPress, and activate only the component/s you need at this time.If you want the Forums component, know that you need to activate Groups component as well because the BP forums component is attached to groups. And members automatically join a group by default when they post to the group’s forum unless that group is private and no-one can post to that group’s forum unless invited to join the group. I also suggest reading through this general reference
https://codex.buddypress.org/getting-started/configure-buddypress-components/Of course with BP activated, there’s the One Quick Post plugin which will allow your members to post articles from the frontend. However, you will need to code using BP blog loop to generated the list of posts that each member has posted in your blog to show up in individual member’s profile page.
If you do not want to go through all that, install external bbPress forum and integrate it with your WordPress installation. When you’re ready to use BuddyPress components, BP can integrate existing external group forum to its fold – again, with the caveat that forum will be then be attached to groups.
September 23, 2010 at 6:42 am #93182In reply to: new user’s profile field messed up, help!
@mercime
ParticipantThat is strange indeed. What did you add/delete/upgrade in your install before strange behavior was manifested? Could it be new user is typing in foreign characters or playing around OR is your install for a private community?
September 22, 2010 at 8:33 am #93077In reply to: Registered Users Only 2: Allow some pages please
Stacy (non coder)
ParticipantWp- private claims to do this (https://wordpress.org/extend/plugins/wp-private/).
September 22, 2010 at 5:53 am #93071In reply to: Migrate from Mingle to Buddypress
paulhastings0
ParticipantWhile I don’t have personal experience with Mingle, it makes sense that you should at least be able to migrate the userbase over. As for Private Messages, Friendships, etc. that sounds more like a job for a plugin.
Make sure though that before you do anything that you create a backup.
September 21, 2010 at 3:14 pm #93032@mercime
Participant@Tolden Do post in the plugin’s forums
https://buddypress.org/community/groups/buddypress-private-community/forum/September 21, 2010 at 3:11 pm #93031Tolden
MemberDoes no one use this plugin and can help me?
September 21, 2010 at 2:49 pm #93027In reply to: Displaying Categories in Groups
phos flip
ParticipantDon’t know if this is any use to anyone and no doubt there are far better ways of doing it but just in case it is of use….
I’ve created (hacked really) a plugin made up of 3 files, one of which is useless for now but at a future point I’d like to play around with it.
bp-group-catdisp.php
`<?php
/*
Plugin Name: Display Categories
Plugin URI:
Description: Displays a blog category in groups
Author: Mas
Version: 0.1
License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html
Site Wide Only: true
*/
if ( !defined( ‘BP_GROUP_CATDISP’ ) )
define ( ‘BP_GROUP_CATDISP’, ‘programme’ );function bp_group_catdisp_init() {
bp_group_catdisp_wrapper();
}if ( defined( ‘BP_VERSION’ ) )
bp_group_catdisp_wrapper();
else
add_action( ‘bp_init’, ‘bp_group_catdisp_init’ );
//above links to admin screen in backend
require(dirname(__FILE__) . “/bp-group-catdisp-admin.php”);// group options
function bp_group_catdisp_wrapper() {
class bp_group_catdisp extends BP_Group_Extension {
var $visibility = ‘private’;var $enable_create_step = false;
var $enable_edit_item = false;
var $has_caps = false;function bp_group_catdisp () {
global $groups_template;// group title
$this->name = __( ‘Programme’, ‘programe’ );
$this->slug = BP_GROUP_CATDISP;
$this->nav_item_position = 12;
$this->create_step_position = 12;// group ID for displaying category within
global $bp;$group_array = array( 17,11 );
if ( in_array( $bp->groups->current_group->id, $group_array) )
//group ID to display in array. Note can reverse this code ie. set it not to display in listed groups by placing !in_array( $bp etc.{
$this->enable_nav_item = true;
} else {
$this->enable_nav_item = false;
}}
function display () {
global $bp, $groups_template;include(“bp-group-catdisp-edit.php”);
//bit above links to file that prints to tab
}
}
bp_register_group_extension( ‘bp_group_catdisp’ );
}?>
`bp-group-catdisp-edit.php
`
<a href="” rel=”bookmark” title=”Permanent Link to “>
Sorry, no posts matched your criteria.
`
bp-group-catdisp-admin.php
`<?php
function group_catdisp_add_admin_menu() {
add_submenu_page( ‘bp-general-settings’, __( ‘Group Categories’, ‘bp_group_catdisp’ ), __( ‘Disp Cats’, ‘bp_group_catdisp’ ), ‘manage_options’, __FILE__, ‘group_catdisp_plugin_options’ );
}
add_action(‘admin_menu’, ‘group_catdisp_add_admin_menu’, 15);function group_catdisp_plugin_options() {
if (!current_user_can(‘manage_options’)) {
wp_die( __(‘You do not have sufficient permissions to access this page.’) );
}
$updated = false;
//above this is php for creating admin page and below is printed onto admin page?>
<?php
if ( !$options = get_option( ‘bp_gm_settings’ ) )
$per_page = 10;
else
$per_page = $options;$args = array( ‘type’ => ‘alphabetical’, ‘per_page’ => $per_page );
if ( $_GET == ‘name’ )
$args = ‘alphabetical’;
else if ( $_GET == ‘group_id’ )
$args = ‘newest’;
else if ( $_GET == ‘popular’ )
$args = ‘popular’;if ( $_GET )
$args = $_GET;
else
$args = 1;if( bp_has_groups( $args ) ) :
global $groups_template;
?>Category <?php
if ( !$group )
$group =& $groups_template->group;
?>Categories You don’t have any groups to manage.
<?php
}
?>
`The first two hard code a group by ID and display a selected wordpress category within that group. The last file is the useless one. I’d started hacking from one of @boonebgorges plugins with the idea of creating an admin screen from which groups could be linked to blog categories.
I’ve run out of time for now to play with that further and so for now am just going to duplicate the first two files for another couple of groups which will work for my purposes.
September 19, 2010 at 2:45 am #92834In reply to: Make Private Groups Visible
amahesh
MemberI have been playing around with this for quite some time but cant get it to work. I just want it so that anyone can see who the members are of a private group. I got close and you can see at http://snipbids.com/groups/electronics-1682147612/members/
Something is showing but I cant get the list of group members to show
Any ideas? please any help would be greatly appreicated
@r-a-y: I made the changes in the templatetags file to get to this result
September 18, 2010 at 1:24 pm #92787Dickson Waudo
Participant@nuprn1 thats a nice idea, I don’t know about the apply_filter though. the `$browse_sql` var is a new var that I initiate in just that function and within the scope of the if statement. Reasons being I added a whole other table to be queried in `$paged_groups` and `$total_groups` array being returned by the `get_active` function.
Its a small line of code, easily replaced on upgrade and works perfectly fine for me right now, I just wanted to be able to access, append/modify and object oriented class function from an outside function (that doesn’t make sense) lol. Something like whatever I have in my what if statement gets its own function and the arguments from the get_active function and processes my query after get active is complete (sorta), its not a private function so I can access it outside the BP_Groups_Group class, just don’t know how I can do an add_action or an apply_filter
September 17, 2010 at 1:12 pm #92698In reply to: Activity Stream RSS Parsing Error
Josh Frank
ParticipantI just re-posted this in the Private Community plugin forum. After deactivating the plug-in, the feed works without an error. I will follow up on the plugin’s thread. Let me know if you have any suggestions for making these play nicely! New forum threat at:
https://buddypress.org/community/groups/buddypress-private-community/forum/topic/activity-stream-rss-parsing-error-1/September 14, 2010 at 4:55 am #92374In reply to: How to make a private community?
NipponMonkey
Member@spinhead, the problem seems to be because your blog isn’t in the root domain. I think you need to change the config file a little to get it working. See my reply:
https://buddypress.org/community/groups/buddypress-private-community/forum/topic/redirect-hell/September 13, 2010 at 11:32 pm #92360In reply to: Quick question about “closed networks”
Ray
ParticipantThanks for the response! My goal is to install the classifieds plugin for BuddyPress and then gave different school networks where students can put up classifieds between themselves(the site is more elaborate but that’s the nuts and bolts). Do you think this is something I can achieve with buddy press?
Private groups
Automatic add to particular group based on school selected(could be a predefined group already made)
The classifieds section be different on each group
No friends, PMs if need be but there will be the classifieds bored so there’s really no needThanks!
-Ray-September 13, 2010 at 8:13 pm #92342In reply to: How to make a private community?
spinhead
ParticipantI’ve also had problems; posted my issue on the plugin’s forum.
September 11, 2010 at 8:41 pm #92185In reply to: Site Crash: .htaccess buggered
LPH2005
ParticipantUnless someone can see a better way to optimize this file, this is my final online version:
`php_value memory_limit 256M
RewriteEngine on
RewriteCond %{HTTP_HOST} ^thechembook.com [NC]
RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]RewriteCond %{HTTP_HOST} ^thechemistrybook.com [NC]
RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]RewriteCond %{HTTP_HOST} http://www.thechemistrybook.com [NC]
RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]RewriteCond %{HTTP_HOST} http://www.chemhints.com [NC]
RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]RewriteCond %{HTTP_HOST} ^chemhints.com [NC]
RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]php_value session.gc_probability 1
php_value session.gc_divisor 100
php_value session.gc_maxlifetime 3600
php_value session.save_path /path/to/sessions# Protect the htaccess file
Order Allow,Deny
Deny from all# Protect wpconfig.php
Order Allow,Deny
Deny from all# Disable directory browsing
Options All -Indexes# BEGIN COMPRESSION AND CACHING
# Enable compression
AddOutputFilterByType DEFLATE text/css text/javascript application/x-javascript text/html text/plain text/xml image/x-iconBrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
BrowserMatch bMSI[E] !no-gzip !gzip-only-text/html# Make sure proxies deliver correct content
Header append Vary User-Agent env=!dont-vary
# Ensure proxies deliver compressed content correctly
Header append Vary Accept-Encoding# No ETags, No Pragma
Header unset Pragma
Header unset ETag
# Default cache time to 1 year (31536000 sec)
Header set Cache-Control “max-age=31536000, public, must-revalidate”# No ETags
FileETag none# CACHE SETTINGS (mod_expires)
# Turn on Expires
ExpiresActive On
# set default to “access plus 1 year”
ExpiresDefault A31536000
# html – “modification plus 1 hour”
ExpiresByType text/html M3600
# css and JavaScript – “modification plus 6 weeks”
ExpiresByType text/css M3628800
ExpiresByType text/javascript M3628800
ExpiresByType application/x-javascript M3628800# No cache for php-files
ExpiresActive Off
Header set Cache-Control “private, no-cache, no-store, proxy-revalidate, no-transform”
# END CACHING
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress`
September 10, 2010 at 1:00 pm #92074In reply to: Allow Only Public Groups
cbowcutt
Membergotcha – didn’t see that before. in the field next to Create Group Capability it appears I can only leave the text “upload_files” in there (it doesn’t take “subscriber”). I deleted the text for Create private group capability and Create hidden group capability but those options still appear when I go to create a new group. I’m clearly doing something wrong….
September 9, 2010 at 12:06 pm #91963In reply to: Is BP the right plattform for my project?
Boone Gorges
KeymasterSounds to me like most of your requirements could be met with WP Multisite plus a few selected plugins and themes.
– P2 allows for front-end posting
– https://wordpress.org/extend/plugins/more-privacy-options/ expands WP’s default privacy options to allow blog admins to hide their blogs from everyone but themselves
– Forums could be accomplished with bbPress or a forum-specific WP pluginDepending on what you need out of “blogs”, you might also be able to repurpose BuddyPress groups to do something similar. For instance:
– Each member is the sole member of a private/hidden group, and uses BP activity to “blog”. Since this happens through BP, there is no WP Dashboard involved.
– Likewise with Notes
– Depending on what you want with “Link List”, that can be pretty easily done with an additional profile field.
– Forums would of course be built in, in the form of non-private groups that the user could join.How to decide? If you don’t need the rich functionality of blogs (post revision history, out of the box multimedia support, etc), then actually giving each user two WP blogs might be too much overhead. In that case, BP would be a good choice. The functionality that you’d need is all already there; your work would be limited to customizing and configuring the interface.
September 6, 2010 at 9:46 pm #91700In reply to: How to make a private community?
NipponMonkey
MemberI’ve now added greater support for allowing access to your site. In the array of allowed URIs, you can now use ‘*’ at the end of an allowed URI,
e.g. Array(‘/public-blog’, ‘/public-blog/*’) would allow access to ‘/public-blog/post-1’, ‘/public-blog/post-2’, etc…
This is useful for allowing greater access to your site while keeping it private, and for allowing access to parts of your site that certain other plugins might require.
See FAQs for more information:
https://buddypress.org/community/groups/buddypress-private-community/home/ -
AuthorSearch Results