Search Results for 'private'
-
AuthorSearch Results
-
February 27, 2013 at 12:09 am #154578
In reply to: Profile fields default is stuck on public
jordas
Participantok, what I just figured out two is that if you do not close the boxes with radiobuttons on the register page. It actually saves your choices correctly. So actually the ‘close’ option on the register page sets it back to the default, public. Still, I would like that default to be private, or better to speak in terms of ‘loggedin’ or ‘friends’…
February 26, 2013 at 11:20 pm #154576Jon Henwood
ParticipantIn case anyone else is looking for an answer and comes across this post, this may help…
We found a solution of a sort.
What you need to do is include an automatic private message send to all group members except the person posting the topic. This private message then gets hooked in to the notification system and lets the user know they have a new message.
February 26, 2013 at 10:23 pm #154574In reply to: Group Notifications
Jon Henwood
ParticipantWe found a solution of a sort.
What you need to do is include an automatic private message send to all group members except the person posting the topic. This private message then gets hooked in to the notification system and lets the user know they have a new message.
February 26, 2013 at 9:16 pm #154561In reply to: Profile fields default is stuck on public
jordas
ParticipantThank you so much for this, especially the conformation I’m not loosing it :p
I will try and see if I can hack the register page of my theme so it has the ‘private’ setting as a default.
February 26, 2013 at 8:13 pm #154556In reply to: Profile fields default is stuck on public
jordas
ParticipantHey Hugo, yes, I have done this. But no matter if user override is set or not. At the registration page everything stays public, even if the admin forces it to private. Is this only me who has this problem? Can you keep me updated on this?
February 26, 2013 at 2:24 pm #154526February 23, 2013 at 9:00 pm #153930In reply to: How to Restrict Pages to Unregistered Members
bp-help
ParticipantFor buddypress specific pages see this thread:
https://buddypress.org/support/topic/private-community-with-public-wordpress/
For post and pages you could try this plugin:
https://wordpress.org/extend/plugins/wp-members/February 23, 2013 at 4:42 pm #153895In reply to: BuddyPress Compatible
Hugo Ashmore
ParticipantThis is a public help forum you shouldn’t really be soliciting private help, all help here is on a volunteer basis.
Have you actually bothered to contact Continuum author yet as has been suggested once or twice now? It has been strongly suggested that it is actually a theme issue so it is down to the theme author to try and help really.
We can try and help but frankly have probably exhausted the limits to which we can.
On the duplication issue, there was another thread in which this was happening so I suspect that there is a common cause involved that is being induced by some themes – an extremely long shot but there have been occasions where members loops duplicated odd members this nearly always resolved down to Caching plugins, you shouldn’t be running any until such time as thought necessary on a production site but in case you are deactivate them.
February 22, 2013 at 9:07 pm #153771In reply to: Video: BuddyPress 1.7 Overview
jimah
Participant@modemlooper I have installed the Buddypress 1.7. Before I installed it, I was having problem with sending Private Message, so I was hoping it will be resolved. However, the problem still persist. When my users and I send a Private Message, it indicate message: No data received…..Unable to load the web page because the server sent no data. Yet the user receives it. I have deactivated all my plugins except buddypress still I encounter the same problem. I change my theme to bp-default theme, yet the problem still persist. I even uploaded a non-buddypress to take advantage of the 1.7 feature but the problem still persist.
I am at my wits’ end here. Please can you help or suggest an approach for me.
Shalom
February 21, 2013 at 9:07 pm #153648bp-help
ParticipantAlso, how can I hide the Activity pages etc. until the user loggs in?
Read my reply in the following thread to accomplish this.
https://buddypress.org/support/topic/private-community-with-public-wordpress/February 21, 2013 at 5:30 pm #153624In reply to: Private Community with Public WordPress
Kevin M. Schafer
Participant@bphelp I do believe I have it now. Yes, my butchered theme that I’m learning on was sending off errors. I enabled the BP-Default Theme and we’re good. I have the BP navigation tabs going to the Sample Page.
I knew you had it right, but I didn’t understand and I didn’t know my theme was causing errors. I use this site for practicing, then I implement the changes that work back to my new site: http://www.gumpolen.com
Thanks,
Kevin
February 21, 2013 at 5:02 pm #153617In reply to: Private Community with Public WordPress
bp-help
ParticipantThat sounds more like your theme is shooting off errors. Try activating the bp-default theme and see what happens. also make sure there is no extra lines before or after the opening and closing php tags in the bp-custom.php
February 21, 2013 at 4:57 pm #153615In reply to: Private Community with Public WordPress
bp-help
Participantdid you add the code to the bp-custom.php you create in yoursite/wp-content/plugins? did you remember to add the code between opening and closing php tags and save the file? I have it working flawless on wp 3.5.1 and bp 1.7 beta 1. for example this line:
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
redirects to register page
you could for example change it to something like this:
wp_redirect( get_option(‘siteurl’) . ‘/sample-page’ );
that would redirect to the sample page.February 21, 2013 at 4:49 pm #153612In reply to: Private Community with Public WordPress
Kevin M. Schafer
Participant@bphelp I missed my greater than sign in starting out the page. Now your code doesn’t show, but when I log out, i get an error across the top of the screen instead:
Warning: Cannot modify header information – headers already sent by (output started at /home/*****/public_html/inlandcoder/wp-content/themes/frisco-for-buddypress/members/index.php:12) in /home/*****/public_html/inlandcoder/wp-includes/pluggable.php on line 876
February 21, 2013 at 4:37 pm #153611In reply to: Private Community with Public WordPress
Kevin M. Schafer
Participant@bphelp I tried this and when I refreshed my site, all of your code appears below the admin bar on my site — above my header.
I created a new page and named it “new page here.”
Here’s your code with my info:
function bp_guest_redirect() {
global $bp; if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) { // enter the slug or component conditional here if(!is_user_logged_in()) { // not logged in user wp_redirect( get_option(‘siteurl’) . ‘/new-page-here’ ); } // user will be redirect to any link to want } } add_filter(‘get_header’,’bp_guest_redirect’,1);
Am I to insert my URL as well? I tried with and without changing it and that didn’t work either.
Kevin
February 21, 2013 at 4:20 pm #153609In reply to: Private Community with Public WordPress
bp-help
ParticipantIt stripped the code again. Just place this between opening and closing php tags in the bp-custom.php file:
`
function bp_guest_redirect() {
global $bp;
if ( bp_is_activity_component() || bp_is_groups_component() /*|| bbp_is_single_forum()*/ || bp_is_forums_component() || bp_is_blogs_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
// enter the slug or component conditional here
if(!is_user_logged_in()) { // not logged in user
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
} // user will be redirect to any link to want
}
}
add_filter(‘get_header’,’bp_guest_redirect’,1);
`February 21, 2013 at 4:18 pm #153608In reply to: Private Community with Public WordPress
bp-help
Participantthe above reply stripped out the code so hopefully this will print out!
``
February 21, 2013 at 4:15 pm #153606In reply to: Private Community with Public WordPress
bp-help
Participantcreate a file named bp-custom.php that you will then place in yoursite/wp-content/plugins folder after you paste the following code in it:
``
Just change the /register in the line :
wp_redirect( get_option(‘siteurl’) . ‘/register’ );
to the page you want the logged out user to be directed too!
I found this somewhere on the net so props to whomever coded it!February 21, 2013 at 2:47 am #153578In reply to: Private Message Not Working
@mercime
Participantto install the buddypress 1.7 plugin beta and it still not working.
@jimah for BP 1.7 beta 1, go to Settings > BuddyPress > Components and enable (check) Private Messaging and Save.February 20, 2013 at 11:42 pm #153565In reply to: redirect – if not logged in – for some sections
freddy mcbob
Participantthis is what i have for my bp-custom.php file:
`<?phpfunction restrict_access(){
global $bp, $bp_unfiltered_uri;if (!is_user_logged_in() &&
(
BP_MEMBERS_SLUG == $bp_unfiltered_uri[0] ||
BP_GROUPS_SLUG == $bp->current_component ||
BP_BLOGS_SLUG == $bp->current_component ||
‘forums’ == $bp->current_component ||
is_page_template(‘website here’)
)
) {bp_core_redirect( get_option(‘home’) . “/private/” );
}
}add_action( ‘wp’, ‘restrict_access’, 3 );
?>`
February 20, 2013 at 9:11 pm #153548Hugo Ashmore
Participant@xsci This is a year old thread and discusses an issue relating to BP 1.5.1; BP is about to release version 1.7.
Please open a new thread, describe the issues you are having and what versions of BP / WP you are using and please test any issues you are having are not custom theme related by dropping back to the bp default theme
February 20, 2013 at 8:46 pm #153543xsci
ParticipantGreetings,
Has a patch been created for this yet? I’m not the programmer and would love an easier way to update this.
Cheers!
Teresa
February 17, 2013 at 4:46 am #153255In reply to: HELP Locations Content filtering and more!
modemlooper
ModeratorWhy not just use groups as a “region”, make them all private
February 16, 2013 at 11:43 am #153175In reply to: Link to a private message
Renato Alves
Moderator@sbrajesh Thank you for this one! 😉
But I have another question, imagine I wanna to put the messages box (compose, reply, etc) in the side bar on a profile page only. As I saw, each instance of the private message comes with a url, like
Compose …/compose
Reply …/reply etc.
Could you point me for a possible solution?
February 16, 2013 at 8:58 am #153174In reply to: Link to a private message
James
Participantyeah, as always, tried tens of variations, not this one 🙂
works excellent, thank you again, Brajesh!
-
AuthorSearch Results