Search Results for 'private'
-
AuthorSearch Results
-
July 22, 2013 at 9:22 pm #168588
In reply to: Use BuddyPress for multiple small private groups
@mercime
ParticipantYou’d find the basic information about BuddyPress components at https://codex.buddypress.org/user/buddypress-components-and-features/
Limiting the number of groups which can be created by user is plugin territory https://wordpress.org/plugins/limit-groups-per-user/
July 20, 2013 at 8:31 pm #168448In reply to: Make Activity Feed Restrictions?
tduschei
ParticipantThanks. I doublechecked after reading your reply.
Unfortunately still no luck.
I went to settings>Private Community For BP.
Next to unblocked page one I typed in without any quotes:
profileBut when I go to the following profile I still get redirected:
http://www.ukraxdemo.com/members/newadmin/profile/Thoughts? Thanks @bphelp
-Tom
July 20, 2013 at 8:09 pm #168445In reply to: Make Activity Feed Restrictions?
bp-help
Participant@tduschei
By default the front page you set in dashboard/settings/reading is not blocked. To un-block a page with a url like this for example: http://your-site/sample-page/
You would go to dashboard/settings/privatecommunitybp and in one of the unblocked page fields you would only need to enter: sample-page because it already gets the rest of the url dynamically. Make sure to save it at the bottom. For you to see how it works you would have be logged out of course. Good luck!July 20, 2013 at 5:21 pm #168437In reply to: bbp_has_topics – hide topics from private grou
nando99
Participantaha not front page but site wide sidebar… its ok, thanks for trying tho…
July 20, 2013 at 5:20 pm #168436In reply to: bbp_has_topics – hide topics from private grou
David Cavins
KeymasterSorry, I think I misunderstood your question from the beginning. You’re not trying to display topics on the front page of a group. You’re trying to show topics on the site’s front page? If so, what I’ve talked about won’t help at all. 🙁
In looking into bbPress, I can’t really see how a particular forum is associated with a group. So I’m afraid I’m not going to be much help. Maybe someone else knows more about bbPress’s group forum integration?
July 20, 2013 at 4:49 pm #168430In reply to: bbp_has_topics – hide topics from private grou
nando99
ParticipantJuly 20, 2013 at 4:49 pm #168429In reply to: bbp_has_topics – hide topics from private grou
nando99
Participanti’m using a premium theme, cinimatix…
if i remove the “if bp_group_is_visible” conditional it works fine but shows all topics… i didnt try the second conditional bc its not even reading the group id..
July 20, 2013 at 3:54 pm #168428In reply to: bbp_has_topics – hide topics from private grou
David Cavins
KeymasterThat’s too bad. A couple of questions I should have asked at the beginning:
- What theme are you using?
- If you remove the conditional we added, does bbPress return topics for the correct group?
July 20, 2013 at 3:42 pm #168426In reply to: bbp_has_topics – hide topics from private grou
nando99
Participantit shows a zero 🙁
July 20, 2013 at 3:35 pm #168425In reply to: bbp_has_topics – hide topics from private grou
David Cavins
KeymasterPut this before the code we’ve been talking about, and see what it displays on the page:
$test_id = bp_get_current_group_id(); echo 'The current group ID is:' . $test_id;If it returns a number besides zero (zero means that it can’t figure out which group is the current group, a non-zero number is the current group ID), then you could probably adjust the conditional code:
if ( bp_group_is_visible( bp_get_current_group_id() ) ) { //do the topics loop here }Fingers crossed.
July 20, 2013 at 3:25 pm #168423In reply to: bbp_has_topics – hide topics from private grou
nando99
Participantit doesnt work as in: no posts show up at all :/
it is on the sidebar… how would i pass the group_id and give bbp_topics access… pretty much a noob here, sorry…
thanks in advance!
July 20, 2013 at 12:03 am #168383In reply to: bbp_has_topics – hide topics from private grou
David Cavins
KeymasterWhen you say it didn’t work, do you mean that people who should see the topics couldn’t, or that no one could see the topics, or that everyone could see the topics? Was it too generous in letting people through or did it keep everyone out? 😉
Also, could it be that this is this being used in a sidebar? I’m wondering if the placement on the page means that the group context is not certain, so you’d need to pass the group_id into
bp_group_is_visible. Although I’d expect thebbp_topicsto need to access the group_id as well.July 19, 2013 at 10:44 pm #168377In reply to: bbp_has_topics – hide topics from private grou
nando99
Participanti tried using the code you provided but nothing i tried worked… the latest forum topic is a widget so i tried putting it around the widget but that of course didnt work…
so i dug deeper and found the template for the actual link and wrapped the code around that and it didnt work either 🙁
the widget code: http://pastebin.com/cWrRkF1H
the mytopics code: http://pastebin.com/PxJGi76N
the single topic code where i put the code you provided: http://pastebin.com/X8VuwWpe
not sure where else to put it…
any help would be appreciated, thanks!
July 19, 2013 at 4:27 pm #168350In reply to: bbp_has_topics – hide topics from private grou
David Cavins
KeymasterYou should be able to wrap your bbp_has_topics output in a conditional like:
if ( bp_group_is_visible() ) { //do the topics loop here }bp_group_is_visiblechecks to see if the group is public or private, and if it’s public, returns true. If not public, then it checks to see if the user is a member of the current group; if yes, it returns true. It’s located at /bp-groups/bp-groups-template.php -> line 377.function bp_group_is_visible( $group = false ) { 378 global $groups_template; 379 380 if ( bp_current_user_can( 'bp_moderate' ) ) 381 return true; 382 383 if ( empty( $group ) ) 384 $group =& $groups_template->group; 385 386 if ( 'public' == $group->status ) { 387 return true; 388 } else { 389 if ( groups_is_user_member( bp_loggedin_user_id(), $group->id ) ) { 390 return true; 391 } 392 } 393 394 return false; 395 }July 12, 2013 at 4:26 am #167963@mercime
Participant@jais-p removed the extra posts 😉
Thank you for posting back with your solution. Cheers.
July 11, 2013 at 3:45 pm #167932jais-p
ParticipantSorry for the multi-posting, bug. Thanks for your help!
July 11, 2013 at 1:08 pm #167926bp-help
Participant@asdevargas
I removed the github version in favor of using the version in the official WP repository which has been improved. You can get it here:
https://wordpress.org/plugins/private-community-for-bp-lite/July 11, 2013 at 12:48 pm #167921jais-p
ParticipantAllright, I’ve solved the problem.
I needed to activate the “always include” option for JS. Although the “include JS” & “include CSS” options were checked, apparently the third option is required in order to upload files attached to private group posts.Thanks for the clue!
July 11, 2013 at 9:52 am #167920jais-p
ParticipantDear Mercime,
Thanks for your reply.
I have tried to attach PDF, DOCX and simple TXT files.I do use GD-bbPress-attachments Version 1.9.2. I have checked the settings, they all seem correct.
Strangely, the behaviour of the posting page doesn’t seem to upload the file I’ve selected, e.g. when I attach a file to any post, the uploading time of the page takes a few second (uploading of the file), whereas when I do the same on a private forum, the uploading time is almost instantaneous, as if the file was simple not uploadedJuly 11, 2013 at 9:23 am #167918@mercime
Participant@jais-p What kinds of files are you attaching? Are you using https://wordpress.org/plugins/gd-bbpress-attachments/ ?
July 8, 2013 at 8:57 pm #167767In reply to: How Do I Hide Extended Profile Fileds from Users
nobodymove
Participant@bphelp. Upon a little further research, I wanted to note that I created a new User Profile Group, created a private field seen by Admins Only in that group, and the settings seem to be working fine in that group. In my Base (Primary) group though, all profile fields still remain visible to all users. Does the Base (Primary) group automatically force all fields visibility public by default? If so, is there way to override?
If there is no way to change the visibility in the Base (Primary), I suppose I can just put private info in the other Profile Group, but I’m curious if or how that may effect my database import..
July 8, 2013 at 8:16 pm #167765In reply to: How Do I Hide Extended Profile Fileds from Users
nobodymove
ParticipantHi @bphelp, is there a way I can privately send you a private link and/or set you up with a user account for my site’s user information? I just don’t want a public link with all of the user’s info public. I currently have all plugin’s deactivated and the twentytwelve theme active. I also did a clean install of Buddypress, still no luck, all the extended profile information is still visibile to everyone.
July 7, 2013 at 10:53 pm #167733In reply to: Make Activity Feed Restrictions?
July 4, 2013 at 12:17 pm #167566In reply to: New Private Community Plugin For BP
Renato Alves
Moderator@bphelp Agree, every project is different and maybe will need a different solution. Thanks for creating the plugin though. 🙂
July 4, 2013 at 6:56 am #167547In reply to: buddy press forum plugin
bp-help
Participant@shameermohamed50
Something is getting lost in the translation here. I know there is a BuddyPress plugin hence we are in the BuddyPress support forums but you keep mentioning a “BuddyPress Forum Plugin.” If you want forums then you will need to install bbpress and use the links I supplied. You can get bbpress here:
https://wordpress.org/plugins/bbpress/
BuddyPress just adds the social networking side of things like activity stream, members directories, extended profiles, adding friends, private messaging etc. If you need to have a forum you will need bbpress. Please do not take this offensively but you need to have a clear understanding of what BuddyPress is and what bbpress is because as stated before as of BuuddyPress 1.7 you will need to install bbpress which is a seperate plugin if forums is a requirement for your project. Have a look in the codex documentation to get a better understanding. Do a google search for BuddyPress and another for bbpress. -
AuthorSearch Results