Search Results for 'private'
-
AuthorSearch Results
-
January 7, 2013 at 7:18 pm #149880
In reply to: Not exactly "a few easy clicks"
ngoegan
ParticipantThanks for your response Chouf1
I set my homepage as a static page and used the Activity page as the homepage. I think that’s why it’s not working. It’s looking for /activity/reply, but it’s named ‘home’. Where do I change the url for the reply page? It doesn’t show up in Dashboard – Pages because it’s a BuddyPress theme page.
Ideally, I’d like a registration where I am sent an email, and then I approve them. This would keep the community private, rather than anyone and everyone self-registering.
The permalinks I chose are the postname option. That’s pretty standard on websites isn’t it?
January 7, 2013 at 7:10 pm #149877In reply to: Not exactly "a few easy clicks"
Paul Wong-Gibbs
KeymasterThe first issue is fixed by a 1.6.3 update, which we will be releasing very soon.
I am not aware of any bugs with your second issue; if the current user is a member of that private group, they have access to see its activity items on any page on your site.
Third issue is a WordPress setting; see http://www.agentwp.com/enable-or-disable-user-registration-in-wordpress
January 7, 2013 at 6:37 pm #149874In reply to: i need style.css for buddypress.1.6.2.zip
ViperRomance
Participantthanks sir,, but where is Private Messaging and friends list pages sir ?? must download plugin again ??
January 3, 2013 at 10:43 am #149528In reply to: Filter or stop email address from private message.
Prince Abiola Ogundipe
ParticipantFor anyone looking for same snippet, put the following code in your functions.php
/*remove email addresses from private messages*/
function wdw_remove_email_from_private_msg($message){
$replacement = “[Warning: Contact removed]”;
/*if you dont want any replacement text, replace the above line with
$replacement = “”;
*/
return preg_replace(“/[^@\s]*@[^@\s]*\.[^@\s]*/”, $replacement, $message);
/*the code is short and works in most cases but not full proof. Check */
}
add_filter(‘messages_message_content_before_save’, ‘wdw_remove_email_from_private_msg’);
add_filter(‘messages_message_subject_before_save’, ‘wdw_remove_email_from_private_msg’);
January 1, 2013 at 1:56 am #149379In reply to: Public group without allowing everyone to join
Ben Hansen
ParticipantYou can visit and navigate public groups; you can’t access private groups without becoming a member.
oh yeah i forgot 😛 good suggestion with that invite anyone plugin.
December 31, 2012 at 7:38 pm #149366In reply to: Private group members cannot create forum topics
aaclayton
MemberOK, I looked into the code, and this is something I’ll need to go bring up on the bbPress forums as it’s an issue with the extend buddypress component of the bbPress plugin.
I opened a ticket here: https://bbpress.trac.wordpress.org/ticket/2140. Hopefully this helps!
December 31, 2012 at 4:02 am #149320In reply to: Public group without allowing everyone to join
mrjarbenne
ParticipantYou can visit and navigate public groups; you can’t access private groups without becoming a member. I’m not sure how familiar you are with CSS, but you can drop that code in a CSS plugin. There is a WordPress.com CSS plugin that has been swallowed up by Jetpack, so if you use jetpack that works too.
December 30, 2012 at 7:50 pm #149300In reply to: Public group without allowing everyone to join
Ben Hansen
Participantisn’t that the same way private groups already behave?
December 29, 2012 at 4:30 am #149186In reply to: Action for Removing Member from group
seppy
ParticipantCan’t seem to get this working, I’ll just disable the ability to let people leave for now (so they can only be removed by admin). Doesn’t matter too much as the site is only private groups.
December 27, 2012 at 10:55 pm #149054In reply to: Remove Header From BP Registration page?
danbpfr
ParticipantHi @hindicell
first of all create a child theme for Frisco.
And use conditionnal tags to show/hide template parts intended for logged in or out users.
Something like
<code> if ( is_user_logged_in() ) :
the stuff to show to logged in users
endif;</code>
and/or
<code> if ( ! is_user_logged_in() ) :
the stuff to show to logged out users
endif;</code>
But before going on a overcomplicated work, you would prefer a private BP site ? If so read here:
https://buddypress.org/support/topic/how-do-i-make-buddypress-1-6-a-private-community/
December 25, 2012 at 6:06 pm #148923In reply to: Ideas for my website, need guidance
Ben Hansen
Participanthi there i’m not so much of coder but i’m thinking i’ll chime in here anyway but most of what you are looking for usually falls under the umbrella of what plugins normally do. some people like to make their own i not being a programmer tend to go with whats already been done for the most part.
#1 you might want to check out s2 members plugin does everything you are looking for in #1 and more but then again that’s not always desirable just saying you might want to check it out.
#2 what you are saying here seems to be a non-sequiter if you actually meant to say site instead of network however it sounds like you actually want to be giving new users Author or Contributor users roles which is actually just a WordPress thing and has very little to do with BuddyPress itself other then possible a hook into the public profiles but again this sounds like something that might also be handled by a plugin especially with regards to reordering the content. Be advised this information already exists on a contributors author page which again sort of a WP thing and not really a BP thing.
#3 is already sorta possibly already similar to the last thing any post (wp thing) can be set to private or password protected but tying that access to different BP connections once again sounds to me like some a plugin might do.
#4 i don’t follow this one either if nobody can see each other how would they ask them to be friends? if you wanted to do such a thing it once again sounds like a plugin.
plugins that do what you are looking for may or may not exist, you will need to do some research or perhaps build them yourself. Like i said before i’m not actually a programmer but from what i hear WP/BP plugin coding is relatively stratiforward if you are proficient in php.
December 22, 2012 at 2:07 am #148414In reply to: Block Blog from Activity
valuser
ParticipantThis link should have been included in the last post. https://buddypress.org/support/topic/possible-to-exclude-post-categories-in-activity-stream-and-make-a-user-profile-private-like-with-pri/
(Also buddypress-edit-activity-stream no longer working on https://buddypress.org/support/ – by design ???)
December 22, 2012 at 2:02 am #148413In reply to: Block Blog from Activity
valuser
ParticipantDecember 20, 2012 at 4:50 am #148202In reply to: A few email questions
bruceleebee
Participant@mercime thanks for that.
But when I change the subject of the Activation Email it does not change anything. The subject is the same as before.
Also there is no option to send a welcome email. Only a welcome private message, which isn’t what I was looking for because I wanted to provide them with their username and password in the email (and obviously they’d need that to login and see the private message).
Is there any other ways to get this done?
December 13, 2012 at 1:00 am #147242In reply to: Can't Install any version of BP
AutomatedKid
Participantupdate: verified all sites are set to permalinks “day and name”
verified “register” page in bp pages setup is set to “register” but the view link takes me to primarysite.com, not primarysite.com/register
and discovered the following error in the phpadmin, possibly the culprit, not sure:
Problems with indexes of table wp_PRIVATE_users
The indexes user_login and user_login_key seem to be equal and one of them could possibly be removed.
December 13, 2012 at 12:36 am #147240In reply to: Can't Install any version of BP
AutomatedKid
ParticipantHere are the 3 error logs when clicking the meta register link
WordPress database error Multiple primary key defined for query ALTER TABLE wp_PRIVATE_usermeta ADD PRIMARY KEY (umeta_id) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress, bp_bb_dbDelta
WordPress database error Multiple primary key defined for query ALTER TABLE wp_PRIVATE_users ADD PRIMARY KEY (ID) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress, bp_bb_dbDelta
WordPress database error Duplicate key name ‘user_nicename’ for query ALTER TABLE wp_PRIVATE_users ADD UNIQUE KEY user_nicename (user_nicename) made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress, bp_bb_dbDelta
thank you.
December 11, 2012 at 8:22 pm #147117voopress
ParticipantRight, so, when I pick the Activity menu item which appears to be public, as soon as I click on it, two options show up, Post in (My profile, or groups) and Post Update.
Er… now it’s working again. What the???
I posted without picking either choice and my post was made public. Before that, not only would it not go public but it was just plain lost. It didn’t show up anywhere.Guess something burped and it’s working now.
December 11, 2012 at 7:28 pm #147101John James Jacoby
KeymasterNot sure what you mean by “public area” — everything is assumed public, unless it’s explicitly private (like private/hidden groups.)
December 11, 2012 at 6:32 pm #147093In reply to: Does Buddy Press work at all ?
gorod
ParticipantI am using Tersus theme from ThemeForest (which is advertised as BuddyPress theme).
My permalinks are set to postname.
BuddyPress is installed , to create forum it’s asking to install bbpress.
So the bbpress (without the BuddyPress) forum works.
But when I go to the BuddyPress newly created pages (groups, forums,members) I get those problems. Can’t create groups, can’t create forum, can’t send private message to memebers. Error message :There was an error saving group details, please try again.
December 10, 2012 at 10:54 pm #147016Clementkjhjkh
ParticipantAnyone ? Please…
December 10, 2012 at 10:30 pm #147013In reply to: Posts with Password privacy
geoutah
ParticipantWhen you create the group, it can be a private group. Try creating a test group that’s private and play with it. Create a test user and try it out.
I would explore plug-ins to see if there may be a fix there for you. I’ve never tried to have this level of specific customization, usually plug-ins are the answer.
Some of this may be theme specific.
December 10, 2012 at 7:40 am #146944In reply to: Only some forums visible
@mercime
ParticipantDepends. You might have set some groups to public and thus have public forums while you set up the others as private groups which then have respective private forums.
December 10, 2012 at 3:34 am #146929In reply to: Private Groups Page Access
@mercime
ParticipantDo post at plugin’s suppport forum https://wordpress.org/support/plugin/buddypress-groups-extras
December 9, 2012 at 8:13 pm #146920Clementkjhjkh
ParticipantDoes someone know where is the problem ?
ThanksDecember 9, 2012 at 6:08 pm #146917In reply to: Private Field
Ben Hansen
ParticipantIf you are proficient at coding you may be able to figure it out, i couldn’t. the feature is going to be built into the next version of buddypress if you can’t wait and manage to figure it out please let me know cause i’d love to be able to do that as well.
https://buddypress.org/support/topic/how-to-add-a-nobody-option-in-the-profile-privacy-options/
-
AuthorSearch Results