Search Results for 'private'
-
AuthorSearch Results
-
April 26, 2015 at 1:19 pm #238387
In reply to: Forums not showing for hidden group
donalconlon
ParticipantActually, it won’t even show if i make the forum private. The forum has to be public for me to see it.
April 26, 2015 at 1:17 pm #238386donalconlon
ParticipantHi @caniwigirl
Yes, i tried it from the back-end. The only way I can get a forum to display with a group is if I make the forum public. It will not work for either private or hidden :(.
April 26, 2015 at 9:08 am #238369caniwigirl
ParticipantHi @danbp, Thanks for joining this discussion.
When I first looked into running BuddyPress on my site a couple years ago, Hidden groups did appear for members of them as outlined by BuddyPress. However, this is no longer the case.
Yes, members can access them if they have the URL for the Hidden Groups’s activity stream…
Yes, members can access them via the forums…
BUT hidden groups do not appear to members of them, moderators, admins or keymasters in any of the group directory pages or member/user profile pages or menus which link to ‘All Groups’ or ‘My Groups’. However, the group count increases to show the number of all groups, be they public, private or hidden.
From https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
List of Groups created in the site including time active stamp, group description, number of members and group privacy setting. Only Public and Private Groups are seen in list by regular members. Super/Site Admin sees all groups including Hidden groups. – NOT working
My Groups… List of Groups you are a member of – Public, Private and Hidden (only by you and Super Admin) – NOT working
Is this what you are experiencing @bewitchingfiction?
April 26, 2015 at 8:26 am #238366BewitchingFiction
ParticipantI have two such groups – both with different memberships.
I have provided the users with the URL but that relies upon them either remembering it or constantly referring to their email.
I have looked at using a further plugin but I have about 9 already for the forum functionality alone, and the more php functions I call during a page load the slower my site becomes (because of the set up of my site at the host level – something I have no control over).
I have also used all the widget slots that I feel comfortable with (about 5 on the page) in order to ensure that the layout is neither too cluttered nor too messy (I find the more stuff you use the less pleasant the site is to look at) – I work for a charity for the visually impaired and one thing we discovered was that users – no matter what their visual capabilities – didn’t like a cluttered page.
I will continue to look, but really my point is that if there is a piece of functionality in something then it should work – UAT isn’t hugely expensive (part of my professional job as it happens) and that is something which would have failed it – it would be nice if there were clear guidelines on which templates (including the core ones) worked with the hidden/private group settings before they were used – I have spent so many hours mucking around with templates only for them to fail at that last hurdle (the groups not appearing) it’s getting rather frustrating.
April 25, 2015 at 9:17 pm #238348caniwigirl
ParticipantI tried it on some of the default WordPress themes and couldn’t get it to work… and it no-longer works on the previous theme used two years ago when I first configured BuddyPress on our site.
My suggested work-around for you until someone is able to get it going again would be to create a password-protected or private page in WordPress for your mods to chat via the comments function. If you use a plugin that allows menu items to only be shown to mods, then no one will know the page even exists.
I use Nav Menu Roles to manage the visibility of menu items on my site. Unfortunately, it’s not compatible with my theme’s menu… so every time I want to add or change a menu item’s visibility, I have to change to another theme to use it , then change back. Clumsy, but it works! https://wordpress.org/plugins/nav-menu-roles/screenshots/
April 25, 2015 at 9:06 pm #238347caniwigirl
ParticipantHi @donalconlon,
Have you tried going into the group via the back-end instead of editing them from the front-end? This works on my site.
From the Dashboard, select Groups then edit the group you wish to change.
In the Discussion Forum box in the right column, below the Settings box, tick the box Yes, I want this group to have a forum. Then, if you click in the Group Forum: selection box directly below that says (No Forum) A list of all your existing forums (public, private and hidden) should appear for you to select from. Click Save Changes and it should be working.
If you aren’t familiar with the back-end editing or groups, you might be interested to know that you can Add New Members to the group and Manage Member roles here too. Those parts are directly below the Name and Description box. If you can’t see any of these options, you might have to select screen options in the top right and tick their selection boxes to get them to show below.
Hope this helps!
April 25, 2015 at 2:03 pm #238336donalconlon
ParticipantI am finding if i add a public/private forum to a group it will work fine. If i change the forum status to hidden it is no longer available to the group. If i set the forum back to private/public, it is still not part of the forum. The only way I can assign a forum to this group is to create a new one. Less than ideal.
April 23, 2015 at 12:07 pm #238269In reply to: How to disable HTML in BuddyPress private message
Henry Wright
ModeratorHey @danbp,
WordPress provides a function for that. Check out
wp_filter_nohtml_kses(). It strips all HTML from the string you provide so there’s no need to usepreg_replace().function hellowed_remove_html_private_messages( $message ) { $message = wp_filter_nohtml_kses( $message ); return $message; } add_filter( 'messages_message_content_before_save', 'hellowed_remove_html_private_messages' );April 23, 2015 at 9:16 am #238253In reply to: How to disable HTML in BuddyPress private message
danbp
Participanthi @hellowed,
try this (add to child theme functions.php or better, bp-custom.php) It will remove a and span and h1 html tag
function bpfr_remove_html_from_private_msg($message){ $replacement = ''; return preg_replace( "/ <(span|a|h1)[^>]*>/", $replacement, $message); } add_filter('messages_message_content_before_save', 'bpfr_remove_html_from_private_msg');April 22, 2015 at 10:32 pm #238234In reply to: HIde BuddyPress and bbPress items from guests
caniwigirl
ParticipantDon’t know why but… It is working again. Perhaps it was the latest update?
Here is another version of the code that can go into the functions.php that I first stumbled on… and is the one I am currently using.
function bp_guest_redirect() { global $bp; if ( bp_is_activity_component() || bp_is_groups_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') . '/wp-login.php/' ); } // user will be redirect to any link to want } } add_filter('get_header','bp_guest_redirect',1);Also, I have set my base category for forums to ‘Private’ so that people must be logged in to get access to the forums under that category, but it still allows me to make those forums ‘Public’. The reason? I don’t want members to have to wait for moderators to approve their request to join each of our discussion forums.
April 21, 2015 at 3:19 am #238140caniwigirl
ParticipantWith further testing I have resolved that HIDDEN FORUMS will show for Moderators and Keymasters (as per bbPress documentation).
HIDDEN GROUPS not showing for anyone (keymasters, moderators of group members) in BuddyPress under ‘All Groups’ or ‘My Groups’ tabs. Only Public and Private groups show. The count of groups indicates the appropriate numbers however…
April 18, 2015 at 12:37 am #237985In reply to: Private message sent to admin e-mail
casnbug
ParticipantSorry, but I think this is broken. Everytime a user sends a private message to another user an email is being sent to that user and the site admin containing a copy of the private message. Please check this.
April 15, 2015 at 7:36 am #237902In reply to: Chat plugin?
djsteveb
ParticipantSo what op is saying, is that basically taking the notifications from the top right and putting “inbox notifications” on the bottom right of the screen, and when hover / clicked would bring up latest messages, and instead of clicking those bring you to a new bp page, it could ajax load your private messages – and allow for image uploads.. would kind of do what you are talking about.. no fancy chat required.. kind of I guess?
I use quick chat on one site with a dedicated server, and only enable it to work on one page, not show up on every page of the site.. I use av-chat (from nusoft I think) on a busier site.. but with my sites I am not using them in the way the OP is asking about, a mini chat tab on each page.. I just use them as chat rooms on a single page.
Tried many other solutions, paid for many, most fail miserably starting around 20 users.
/random thoughts at 2am
April 14, 2015 at 1:22 pm #237865In reply to: Set user role on registration so can upload files
danbp
ParticipantBuddyPress doesn’t handle the Media Library.
BuddyPress doesn’t handle registration.It’s a bad practice to allow users to upload something to your site until they’re not fully registered. When a user register, WP considers this new account as pending. As long as the user hasn’t activate his account with the activation key, he can only visit the site.
As you installed BuddyPress, i suggest you use your site à la BuddyPress.
If you want your members be able to upload files, use BuddyDrive. Each user can upload files from within his profile page and can share them on different levels (public, private, friends only). And much better as the Media Library default behave, each document belong to his user. BuddyDrive attributes a folder to each user who upload a document.This is much simplier, well integrated and efficient in a members community as strugling with custom code (and potential errors and security issues).
April 8, 2015 at 3:51 pm #237490In reply to: Why is there no ajax on profile tabs?
mrgiblets
ParticipantHey @mcpeanut,
AWS Pro will do exactly what you are after out of the box, it returns you to exactly where you were on the page, but you might find that you want to disable that as it can be a bit confusing for people. If they click on a link for a blog post for example, it will load the new page but not from the top if that makes sense, so you see the blog post but you may already be halfway down the page and need to scroll back up to read it from the start. This can be fixed with the inbuilt “scroll-to-top” feature though, which is what I use but I’ve removed the hard coded jQuery animation that comes with it.
The messaging issue is that at the moment with AWS Pro activated, the dropdown list of members isn’t firing when you start typing somebody’s name in a private message. I notified the dev about it and he is fixing it for the next update though.
April 7, 2015 at 1:25 pm #237381In reply to: Chat plugin?
rosyteddy
ParticipantThere’s private messages built in, but this is rather old school. You can’t leave the conversation as you can on FB, you can’t upload files to the conversation etc. I am after something like Facebook chat/messaging system.
Personally I would like PM and chat to be separate. But then, things may change also – who can say – please submit issues with lots of real world example at https://buddypress.trac.wordpress.org/report
Some chat solutions worth looking may be https://wordpress.org/plugins/search.php?q=buddypress+chat
April 6, 2015 at 9:04 pm #237351In reply to: Chat plugin?
mariatrier
Participant@mcpeanut, exactly. There’s private messages built in, but this is rather old school. You can’t leave the conversation as you can on FB, you can’t upload files to the conversation etc. I am after something like Facebook chat/messaging system.
April 6, 2015 at 7:52 pm #237347In reply to: Chat plugin?
mcpeanut
ParticipantI don’t understand what you mean because buddypress has private messages built in as standard.
April 6, 2015 at 12:31 am #237317In reply to: Page Not Found Permalinks Issue
Alice Kaye
ParticipantIt has been quite an uphill battle for me with this, but I believe that I have finally found the offending plugin. Thank you @mrgiblets for your last suggestion. I began going through and turning off each of those plugins in your mini list, just to see if we got anywhere.
bbP private groups seems to be having a major conflict with my site, rendering those posts as 404’s. I’ve had it turned off since Thursday or Friday and so far, I haven’t had an issue arise since. I’ve turned back on Akismet and All in One SEO and so far, so good. I’m incredibly hopeful that I’ve found my solution.
April 2, 2015 at 8:54 am #237166danbp
ParticipantAdd this snippet to your child-theme functions.php or bp-custom.php
Nedds also a template overload of
/your-theme/content.php
as you should add an action or the function call near the (blog) post.function bpfr_pm_to_author() { $author = get_the_author(); echo '<a href="'.wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . get_the_author() ) .' title="Private Message"">Private Message</a>'; }April 1, 2015 at 11:53 am #237097In reply to: Page Not Found Permalinks Issue
mrgiblets
ParticipantI think permalink settings are refreshed automatically when activating / deactivating any plug-in in WP.
Sometimes this doesn’t work properly and you have to do it manually, you’ve probably experienced that at some point?
I’d personally start by picking a dead time of night when there are unlikely to be any (or at least not many) users on the site and start by deactivating the following one by one :
Akismet All in One SEO Pack bbP private groups Contact Form 7 DP Pro Event Calendar Link LibraryIf I had to take a random shot in the dark guess on what is causing problems I’d put my money on Akismet & AIO SEO Pack. I very much doubt that these plug-ins are causing the issues by themselves, but one of the others is probably conflicting with them.
Disabling each of these in turn will at least give you a starting point to debug from if things start working again when they are deactivated.
March 31, 2015 at 6:55 pm #237075In reply to: [Resolved] How to remove "view" button from profil ?
nate22
ParticipantThanks… that’s interesting! I suspect the logged in user view is #private-personal-li or something so it will still be there when you’re editing your own profile, right?
March 30, 2015 at 11:08 pm #236984In reply to: Missing users and redirection issue on user profiles
project_subdomain
ParticipantOh no, feared that. Too bad. Unfortunately it seems the best for me to fall back on one of the plugins enabling private messaging between wordpress users due to serious issues after moving folders last times.
Thanks so much for your effort, danbp!
Is this going to be changed in future versions?
March 30, 2015 at 11:38 am #236922In reply to: Trouble Creating new groups
ChristophK2003
ParticipantHi.
I am also using wordpress 4.1.1 and buddypress 2.2.1 and for all pages, which I need to map via the settings page I am getting a blank page: Groups, Members, Register and Activate. I am using the default theme. It is a multi-site setup, however buddypress is only used on the main site (first blog) and also only there activated.
I did only minor styling via the themes css and the header.php.WP_Debug does not show any errors as well as the Apache log is empty.
It was working fine until i updated recently the connected bbpress for forum.
Besides that I am using following plugins:
bbP private groups
bbPress
bbPress Advanced Capabilities
BP Registration Options (DEACTIVATED CURRENTLY)
BuddyPress
BuddyPress Group Email Subscription
BuddyPress Like (DEACTIVATED CURRENTLY)
BuddyPress Multilingual
HookPress (DEACTIVATED CURRENTLY)
Nginx Helper (only on staging)
Page Builder by SiteOrigin (DEACTIVATED CURRENTLY)
Paid Memberships Pro
Paid Memberships Pro – bbPress Add On
Paid Memberships Pro – Register Helper Add On
Social LoginNetwork activated:
WordPress SEO
WPML Multilingual CMS
WPML String Translation
Events ManagerMy dev environment is XAMPP on Mac and on the staging is a linode cloud server with Ubuntu on Nginx (I think). Both have the same issues.
It’s not a live site yet, just demo, therefore some of the plugins might get activated if I am back on track.Tried it now to get it run for about 15 hours:
– I also deactivated all plugins except buddypress and still did not get any of those sites working.
– Actiavated / Deactivated the plugins
– Used the repair tools
– looked into all my codes and fixed file endings such as empty space after ?> in php files
– Reassigned all sites
– Researched a lot in million of forumsAny hint, idea, glimps or full stack solution is highly appreciated.
Thanks, Chris
March 30, 2015 at 11:26 am #236919In reply to: Does buddypress support markdown?
Henry Wright
ModeratorHi @itkid
Does buddypress support markdown?
Not currently. A markdown plugin would be great for BuddyPress activity posts and comments, private messages and so on, but to my knowledge there isn’t one available right now.
-
AuthorSearch Results