Search Results for 'private'
-
AuthorSearch Results
-
December 8, 2012 at 10:13 pm #146887
Clementkjhjkh
ParticipantThanks,
Actually i think that your code should work and that my problem may be not where i thought. problem.
When i use
define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
it works but when i put it in a function like that, nothing happens:
function redirect_to_forum(){
define('BP_GROUPS_DEFAULT_EXTENSION', 'forum' );
}
add_action('wp','redirect_to_forum');
So, i think that’s why nothing happens when i try to add your code.
Do you know what’s wrong with my function ?December 8, 2012 at 7:24 pm #146878jonlachlan
ParticipantJust came across this issue. Updates in Groups that were previously public, now private, are shown to a non-member in All Activities page. However, if they open the group page, they are of course told that it’s private (nothing is shown). Isn’t there a way for the loop to just check the group privacy status for each activity item?
This is in 1.6.1 (as WP plugin)
December 8, 2012 at 5:14 pm #146862In reply to: Private Groups Page Access
ElbowRobo
ParticipantBump?
December 7, 2012 at 4:27 pm #146769modemlooper
ModeratorThis is not tested but you don’t want the define to run if a member is not a member of a private group.
if ( bp_group_is_visible && bp_is_group_member() ) {
define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
}
December 7, 2012 at 11:05 am #146758Clementkjhjkh
ParticipantSorry, here is what i tried :
function redirect_to_forum() {
global $bp;
if( bp_is_group_members() )
define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
}
add_action( ‘wp’, ‘redirect_to_forum’ );December 7, 2012 at 10:28 am #146756Clementkjhjkh
ParticipantHi,
I have the same problem, i tried this :but it doesn’t work, am i doing something wrong ?
Besides i got a warning message :Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /homez.38/centrale/www/demo/demo/INELSE/wp-content/plugins/bp-custom.php:10) in /homez.38/centrale/www/demo/demo/INELSE/wp-content/plugins/events-manager/classes/em-notices.php on line 11
If someone has a solution, it would be really great
December 7, 2012 at 5:05 am #146744modemlooper
ModeratorOr, if group is private and user is not member
December 7, 2012 at 4:59 am #146743modemlooper
ModeratorJust wrap that define with code that tests if a user is a member of group.
December 7, 2012 at 3:19 am #146741dennissmolek
ParticipantI am having the exact same problem. I submitted it as a ticket:
https://buddypress.trac.wordpress.org/ticket/4706
What is happening is its trying to redirect to the home tab, then the change default filter moves it to the other tab, which causes the loop.
Until its fixed simply add ‘/home’ to the line mentioned in the ticket.
December 6, 2012 at 11:06 pm #146722In reply to: Mapology – Adding maps for users and groups
jeduhu
ParticipantBoris,
I have a few questions. I really like what you’re offering in Shabushabu and have questions about utility.
1. So this map can be added to each user profile to correlate to their location. Can you set it to private?
2. On your events plugin can you set the event geo tag to correlate with the profile. Meaning if you have a profile search event, to create begin and end point for instant navigation.
3. Is this offered to the US? I’m not sure what the prices are for us here.
Thanks,
JeremiahDecember 6, 2012 at 4:06 am #146628In reply to: My hunting social network
johnjf
ParticipantThanks, I had the pages set on private for the time being.
December 3, 2012 at 9:22 pm #146435In reply to: Forums not working
Kevin.Bowser
Participant@beingblissful I would like to chat with you about your experience with Salutation. I am about to purchase it and institute forums and migrate an existing blog to a new domain that I purchased. I was really drawn to Salutation because of the look of it and the video tutorials make it look so easy. My problem is that I have not been able to get forums to work at all as described in WordPress or BuddyPress documentation. I would like to chat with you if you have time. If you do, please email me your contact info privately and I will reach out to you. My email address is kevin.bowser@live.com.
I tried to send you this as a direct message, but to no avail. Maybe I am just not destined to use BuddyPress???
Thanks,
Kevin
December 1, 2012 at 10:05 pm #146298In reply to: [Resolved] Logged-In User Profile Link URL
ihiustler
Participant@paintermommy did you ever get this to work with the wishlist plugin? Are your forums private and only for paid members?
November 29, 2012 at 2:46 pm #146117Hugo Ashmore
ParticipantFinished almost exactly the same requirement for a private community, certain profile fields consist of data needed to be added by the site rather than individual users, so set specific edit profile fields to super_admin only but allowed the public view, then as admin you just need to navigate to the users account and then use the admin links on adminbar to edit users profile.
Users are not a BP managed item, Users belong to WP thus adding new users does not present the same xprofile fields for editing.
November 29, 2012 at 1:30 am #146071In reply to: Move group forum topic to different group
daneglerum
ParticipantThanks @aronprins
I’ve tried that plugin but did not have any luck.
I’m starting to wonder if group forums were the best architectural decision for my community. I like the ability to segregate conversations by group and to have private groups and forums but perhaps there is too much segregation. The decision for buddypress.org to move away from group based forums factors into my thinking too.
I’ll do some more reading on how sitewide forums can be used. It seems like this implementation of bbpress is a bit more flexible.
November 26, 2012 at 5:32 pm #145685In reply to: Best way to enable facebook login?
November 25, 2012 at 1:28 am #145613In reply to: Hiding menu from non login users
aces
ParticipantI’m not clear quite what you want but the end of the following post is about creating different logged in and out menus ( with a child of bp-default theme ) …
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-do-i-make-buddypress-1-6-a-private-community/#post-136021.November 23, 2012 at 10:25 pm #145559Brajesh Singh
ParticipantThere was a bug with bp-default theme shipped with bp 1.6+ and any theme which is based on bp-default or copies functions from it has the same bug.
Here is a way to fix that.
First look for this code(or similar) in your themes functions.php
if ( !is_admin() ) { // Register buttons for the relevant component templates // Friends button if ( bp_is_active( 'friends' ) ) add_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 ); // Activity button if ( bp_is_active( 'activity' ) ) add_action( 'bp_member_header_actions', 'bp_send_public_message_button', 20 ); // Messages button if ( bp_is_active( 'messages' ) ) add_action( 'bp_member_header_actions', 'bp_send_private_message_button', 20 );and change this line
if(!is_admin()){to this
if ( !is_admin()||(is_admin()&&defined('DOING_AJAX')) ) {and it will work.
November 23, 2012 at 12:47 pm #145543In reply to: Multisite Installations
SameOldShane
ParticipantI’m still having issues with this as my main site is still taking buddy press settings along with my private, such as the admin bar and if i privatize one the public site also requires a login,
Help!
November 22, 2012 at 2:42 pm #145505In reply to: Multisite Installations
Brajesh Singh
ParticipantHi Shane,
You can install buddypress on secondary blog and use it as private network.Here are some details on configuring BuddyPress on secondary network
https://codex.buddypress.org/users/getting-started/install-buddypress-on-a-secondary-blog/and you can use any of the wordpress privacy plugin to make this network private.
Hope that helps.November 22, 2012 at 10:11 am #145495Tammie Lister
ModeratorMy first guess without seeing a link would be some scripting error. Can you check using the web inspector in Chrome (or another browser)? https://developers.google.com/chrome-developer-tools/
I’d suggest if possible to remove all plugins and see if something is causing this. Also make sure your theme and plugins are up to date.
If that doesn’t fix it could you please provide a link to your site as it’s hard to diagnose without being able to see one. I know sometimes that’s not possible as private or work in progress, but if it is possible it can help.
November 20, 2012 at 1:00 am #145362EthanVan
SpectatorI didn’t realize that MediaWiki powered the WP codex… I quite like the WP powered codex idea I just meant that the BP codex should be organized like it is at WP.
@johnjamesjacoby – It’s already been admitted that the last attempt at the codex was a fail due to lack of leadership and everyone just doing whatever… So keeping that mentality is futile and is holding back the success of the codex. I’m not here to kiss butt and brown nose. I’m here to do a job that I won’t get paid for that will help YOU and YOUR project immensely because it needs to be done. Don’t get righteous about “earning the right” to be a leader of the codex team when your plan is not to have one.
Someone should take the reigns and build a structured codex team and I see no other person stepping up except myself. I expect that I should be allowed this privilege solely on the basis that I am willing to do so, and additionally, have many years of leadership experience. If I fail, you lose nothing and get to have a laugh at me, but if I succeed, the amount of praise and respect BP will gain will be immeasurable.
So, please let us put our pride away for a minute, stop addressing leadership rights, and concentrate on organizing a codex team and getting it structured in a way that lends itself to productivity and direction.
I agree with you @hnla we need to stay focused. I realize we need to have a deeper scope within the codex. What I think should happen first though is building the lists and descriptions of functions, hooks and filters, the reference. Then we have a base page for everything. Later we can go into deeper coverage and provide example code etc.. Any project this large needs to be completed in phases.
@modemlooper, @johnjamesjacoby, I don’t feel dismissed, the codex was being dismissed. Anyways, that’s going to change.
The very, very first thing I think should happen is setting up a clean slate to build on. Keep the codex up as is for now but give me a new, private, clean slate to create version indexes and add pages for each function, filter and hook. We can point to the new codex when phase one is complete. The reason I want to use pages is so I can implement a parented structure. Are there any objections to this? Any other ideas? Anyone wanna slap me?
November 19, 2012 at 11:07 pm #145353Hugo Ashmore
ParticipantHowever @ethanvan can we keep things on site please not off on private emails, we have already a group or thread on codex matters lets try and keep focussed there.
I agree about the sentiments re attempting to mirror WP codex as much as possible.
We don’t simply want a long list of hooks/filters though we have a complexity of functions that need describing , also we need to explain the basics of how BP works in terms of navigation, core templating etc it’s not straightforward and not strictly in keeping with WP we need examples of how to create new nav items, update and improve examples of the primary loops, group extension etc
November 19, 2012 at 3:20 pm #145312Mark182
ParticipantCan i send you a Private Message so not everybody can login?
(how?)I allso see this error on my Dashboardpage now:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in /public/sites/www.mywebsite.nl/wp-includes/class-simplepie.php on line 13815November 17, 2012 at 6:16 pm #145213In reply to: How to hide when not logged in?
aces
ParticipantUse the wordpress menu system but create a logged in menu and an alternative
See ( at the bottom of the post ) https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-do-i-make-buddypress-1-6-a-private-community/#post-136021
-
AuthorSearch Results