Search Results for 'private'
-
AuthorSearch Results
-
September 12, 2013 at 8:12 pm #171246
In reply to: question about Group filtering
3×7
ParticipantIs there any plugin available to filter the “public” and “private” groups?
Dropdown or tabs?
Thanks!
September 12, 2013 at 6:09 pm #171224In reply to: Credential system for members of certain groups
Ben Hansen
Participantyou might want to consider using achievements:
achievementsapp.com
to accomplish what you are seeking to do you could also create a private group to collect them.
September 12, 2013 at 5:10 pm #171213@mercime
Participant@koomak @tperkins there’s a trac ticket for this https://buddypress.trac.wordpress.org/ticket/5140 = would be helpful if you provide more information about your installation, also if this happened only when you upgraded to BP 1.8.1 or do you have a new installation?
September 11, 2013 at 8:27 pm #171166In reply to: Unable to add user to group
wernerk
ParticipantJust a long shot… do you use an e-mail address as username?
Have a look at my question https://buddypress.org/support/topic/problem-with-email-adress-as-username/ from some months ago. Unfortunately nobody replied.
Workaround is to to create usernames without @ (we always create users ourselves, completely private groups, members need to be invited).
Didn’t check recently if the problem has been resolved or not.Installed a plugin for users to login with their e-mail address or their username (which they typically forget) Plugin is WP Email Login: *Allows you to log into WordPress using your email address instead of a(nother) username.* Can be found at https://wordpress.org/plugins/wp-email-login/
Don’t know if you might have a similar issue.
September 11, 2013 at 5:10 pm #171157In reply to: Bugs between bbpress and Buddypress
r-a-y
KeymasterThere was a bug in a previous version of bbPress where the visibility of the private and hidden forums were not being saved properly.
The bug is fixed in bbPress 2.4, but for previous group forums, you’ll need to repair them.
You can do this by:
- Logging in to the WP admin dashboard
- Navigate to “Tools > Forums”
- Make sure to check “Recalculate private and hidden forums”
- Lastly, hit “Repair Forums”
This will regenerate bbPress’ internal private and hidden forum IDs that are used to filter posts and will therefore fix forum visibility problems.
September 11, 2013 at 4:59 pm #171156In reply to: Private Portal with BuddyPress
Hugo Ashmore
ParticipantJust to add a footnote to thread:
if by ‘main activity page’ we mean the /activity/ A Directory then we should be able to test for that with:
bp_is_directory()
Then not have to qualify the conditional with ! user_activity or at least be able to do bp_is_directory && whatever comp we’re after.
September 11, 2013 at 10:32 am #171139In reply to: Flat Portal theme
Squirrel
ParticipantThanks @shanebp 🙂
It basically works in this way- I have a header file with multiple headers for different page templates or conditions such as is_singular() or is_page.. e.g
if (is_front_page() || is_404() || is_page_template('public-subpages.php') || is_page_template('public.php') || is_page_template('public-full.php') || is_page_template('gallery-public.php') || is_singular('download') || bp_is_activation_page() || bp_is_register_page()) : get_header('public'); elseif (bp_is_profile_component() || bp_is_settings_component() ): get_header('restrict-profile'); else : get_header('private');The pages are all set to private by default and depend on setting them to different page templates if you want them public or a different style.
The private pages have a header-private that re-directs non-logged in users to the log in page (which is created on theme activation and set to the log in page template)So the public page templates have a header-public without any redirect for non-logged in users.
There are also page templates that go with a header-restrict for restricting pages to editor / admin only with the conditional redirect
elseif (bp_is_current_component( 'members' ) || is_page_template('archives.php') || is_page_template('full-restrict.php') || is_search() || is_tag() || is_date() ) : get_header('restrict');The different header files have re-directs at the top except for the public one: e.g header-restrict has:
if(!current_user_can('delete_others_pages')) { wp_redirect( home_url() ); exit; }
at the top.It’s been my pet project for a few years but to be honest you are right I’ve not had much luck promoting it and there are lots of plugins that do similar things and lots of themes, but it’s been interesting non the less 🙂 I use it for my own little project support area and it’s basic but it works.
Thanks for checking it out.
September 10, 2013 at 3:36 pm #171093In reply to: Bugs between bbpress and Buddypress
Peter Hardy-vanDoorn
ParticipantIn theory if you set your group to “Private” or “Hidden” then non-group members are not supposed to be able to see the posts in that group’s bbForum.
However, and this is denied by the developers, I am experiencing a bug which is making all forum posts appear in the site-wide activity stream to all members, although when they click on the link they cannot view the post.
cf: https://buddypress.org/support/topic/private-group-posts-appearing-in-activity-stream-to-non-members
So, no, you’re not going crazy 😉 and yes, it is incredibly frustrating!
Peter
September 10, 2013 at 3:31 pm #171092In reply to: How To Create Groups within Categories (CONFUSED)
Peter Hardy-vanDoorn
ParticipantBuddyPress groups can’t have categories associated with them. My advice would be to just set up a different group for each island. You can make each group private to ensure that only members of that group can see the forum posts within.
Additionally, there is a plugin which will give groups hierarchies if you wanted to make it easier to group groups together (eg, if your islands are grouped geographically you could have a “north islands” group and a “south islands” group and within each group you would then have your individual islands groups).
Search for “BP Group Hierarchy”
Hope that helps
Peter
September 9, 2013 at 8:13 pm #171051tperkins
ParticipantOnly happens when you are an Admin and on the single group page/ request process
September 6, 2013 at 4:25 pm #170963diaritoch
ParticipantNever mind. Fixed it by going to the database and changed the Hide Sitewide value from 1 to 0 in all the activity posts.
September 6, 2013 at 8:35 am #170937In reply to: Restrict Privacy Options (Group Settings)
Matt
ParticipantI want to only allow private groups, so I’ve commented out the equivalent of lines 81-88 & 99-106 in create.php and 59-67 & 79-87 in admin.php. Now when a user creates a new group, it does only show the private option, but it remains unchecked unless they click on it, so if they don’t, the group’s status remains as ‘public’ when they continue to the next stage. How do you set the radio button to be checked by default?
September 6, 2013 at 3:59 am #170907bp-help
ParticipantSeptember 6, 2013 at 12:51 am #170895bp-help
Participant@joe2000
In line 37 of my plugin after this:
if ( !is_user_logged_in()
add this:
&& !is_home()
This will allow that landing page to logged out users but will redirect to register or wp-login.php depending on which you define in the plugins settings. All other pages other than the landing page will be private.September 3, 2013 at 11:11 pm #170829tperkins
ParticipantSame here. private group gets 404. public group fine. cant go live with client.
September 3, 2013 at 3:39 pm #170815In reply to: Private Message/Conversations view messed up
jamesdonegan
ParticipantMaybe @mercime can be of help? You’ve been grea with other issues…. Thank you!
September 3, 2013 at 2:57 pm #170814In reply to: Using BuddyPress as Private Club Network
kimz
ParticipantI’ll check bp_get_current_signup_step(),
and putting the code on the registration page seems to be a simple and good idea,
September 3, 2013 at 2:49 pm #170813In reply to: Private Portal with BuddyPress
Squirrel
ParticipantHi
Thanks @modemlooper I managed to figure it out after trying a few things and your conditional helped me deduce it.
if ( bp_is_current_component(‘activity’) && !bp_is_user_activity() ) {
worked for me.
(redirect if on main activity page but not own activity)September 3, 2013 at 2:25 pm #170810In reply to: Using BuddyPress as Private Club Network
Xevo
ParticipantJust put the actual code on the registration page?
You can edit register.php in the theme.You could also take a look at bp_get_current_signup_step(), if you want to make it an actual step in the registration process.
September 3, 2013 at 2:04 pm #170809In reply to: Using BuddyPress as Private Club Network
kimz
ParticipantI did something similar,
I created a db table with the members’ names and numbers,
and a php form with to field to check the input data with the db table,
if it’s correct the user is redirected to the registration page,but I was lookin for something to integrate between this page and the registration page, like a way to encrypt the link or deal with it as a registration step, you know what I mean? 🙂
September 3, 2013 at 1:47 pm #170807In reply to: Using BuddyPress as Private Club Network
Xevo
ParticipantMaybe you could add a form that shows when a users tries accessing the register page that would require them to enter a security code first before seeing the actual register page.
Something like
if(!is_user_logged_in()) { if(!$_POST["access"]) { -show access form- } else { -show register page- } } else { -redirect user since he's already logged in- }(Just a raw sketch)
September 3, 2013 at 1:31 pm #170805In reply to: Using BuddyPress as Private Club Network
kimz
ParticipantThanks for your contribution @Xevo
all users are already redirected to the login page if not logged in,
but I want to allow only the users with the correct name and membership number to access the registration page
September 3, 2013 at 1:28 pm #170804In reply to: Using BuddyPress as Private Club Network
Xevo
ParticipantJust redirect any url towards the register/login page if the user isn’t logged in?
September 3, 2013 at 11:30 am #170789Peter Hardy-vanDoorn
ParticipantUpdate: bbPress 2.4 does not fix the bug!
September 2, 2013 at 5:49 am #170743In reply to: Private Portal with BuddyPress
modemlooper
Moderatorbp_is_profile is used to test if its a profile page. try that in a conditional.
-
AuthorSearch Results