Search Results for 'private'
-
AuthorSearch Results
-
June 28, 2013 at 4:37 pm #167113
In reply to: Compose Message and Private Message link problem
shanebp
ModeratorMessages send is okay.
Just sent to kizmark and oz_adminYou have to use the correct name: kiz mark will fail.
June 28, 2013 at 4:16 pm #167111In reply to: Private Message Button in Member List Loop
kizmark
Participant@Henry, Did you got it solved?
I’m having the same question.. I want to get the link to have a send private message button
June 27, 2013 at 6:24 pm #167046In reply to: [Resolved] Adjusting Privacy Settings
bp-help
Participant@synaptic
Still waiting for the plugin review before I move it over to the repo but until then you can get it here.
https://github.com/bphelp/private_community_for_bp_liteJune 27, 2013 at 5:17 pm #167042In reply to: Join a Private Group by Password?
modemlooper
ModeratorDon’t think that exists but sounds like a good plugin.
June 26, 2013 at 8:09 am #166905In reply to: Prevent from spam messages.
Henry
MemberHave you tried searching the WordPress plugin repository for something like ‘buddypress spam messages’?
A good plugin that will certainly resolve the issue is
https://wordpress.org/plugins/buddypress-private-message-for-friends-only/June 22, 2013 at 12:05 am #166572In reply to: Request membership button?
@mercime
Participant@agreenmail @agreenmail I was using the Twenty Twelve theme when I made the tutorial “How to Join a Private Group” around a month ago in this page https://codex.buddypress.org/user/buddypress-components-and-features/groups/how-to-join-a-private-group/
June 21, 2013 at 5:30 am #166526In reply to: New Private Community Plugin For BP
bp-help
Participant@profc
Hi, sorry so late for getting back to you. My ISP has been strange today. I just updated github Repo to 2.1 to allow up to 10 unblocked public pages. As before read the readme.txt and follow the commented instructions in private-community-for-bp.php
https://github.com/bphelp/private_community_for_bpJune 20, 2013 at 10:15 pm #166515In reply to: New Private Community Plugin For BP
ProfC
ParticipantHi dear, I successfully installed your private community for bp and I edited
private_community_for_bp-master/private-community-for-bp.php changing ‘test’ with the name of the page I want to be public.
I cannot figure out how to put more pages available for generic users.
I tried to copy this string$bphelp_my_unblocked_pages = ‘page_name’;
many times changing the name of the page each time, but it always works only with the last page.
Can you please tell me how to put more pages?
Many many thanks,
GabrieleJune 20, 2013 at 6:09 pm #166504In reply to: Request membership button?
agreenmail
ParticipantUsing child theme of twentyTwelve. BP 1.7. WP 3.5. Currently on a localserver.
Just switched over to buddypress default. No joy. Then switched back to TwentyTwelve. No joy.
(Should add that I also tried setting up a completely new test site and had the same result. Private group is set.)
June 20, 2013 at 6:02 pm #166502In reply to: Request membership button?
@mercime
Participant@agreenmail I see the request membership button in all private group screens. BP/WP versions? What theme are you using? Change to Twenty Twelve theme and check if the request membership button is present in your private group
June 20, 2013 at 12:46 pm #166476ProfC
ParticipantHas someone found a solution to this issue? I also want to deny access to non-logged in users to group and members pages.
I tried private_community_for_bp but I did not understand how to customize code since I want to leave generic users to vist 3 pages that do not belong to bp installation since, like site homepage
June 20, 2013 at 6:58 am #166462In reply to: non-logged in users access to private pages
ProfC
Participantdear @bphelp
I try to explain better: I need 3 pages available to all users. Those three pages are: home, radio-109, contatti (these are the short name of the pages).
I want to stop users from accessing bp pages like members and groups pages by hot links.
‘registrati’ is the slug that stands for ‘register’ page on bp.
I used private_community_for_bp-master, as you suggested me, and I edited private-community-for-bp.php in this way:
/* Prevent logged out users from accessing bp pages */
function bphelp_private_community(){
global $bp_unfiltered_uri;$bphelp_my_unblocked_pages = ‘ ‘; // Replace ‘test’ with the name of the page you would like to make available to logged out visitors EX: ‘activity’
$bphelp_my_unblocked_pages = ‘radio-109’; // Replace ‘test’ with the name of the page you would like to make available to logged out visitors EX: ‘activity’
$bphelp_my_unblocked_pages = ‘contatti’; // Replace ‘test’ with the name of the page you would like to make available to logged out visitors EX: ‘activity’
$bphelp_my_unblocked_pages = ‘registrazione’; // Replace ‘test’ with the name of the page you would like to make available to logged out visitors EX: ‘activity’
$bphelp_if_I_changed_my_register_slug_it_is = ‘registrazione’; // Replace ‘register’ if you have changed the ‘register’ slug for example to ‘sign-up’
if ( !is_user_logged_in() && !bp_is_register_page() && !bp_is_activation_page() && ( $bp_unfiltered_uri[0] != $bphelp_my_unblocked_pages ) )
bp_core_redirect( get_option(‘home’) . ‘/’ . $bphelp_if_I_changed_my_register_slug_it_is );}
add_action( ‘wp’, ‘bphelp_private_community’, 3 );
/* End Prevent logged out users from accessing bp pages */I want that generic users can reach those pages, but at this time they are redirect to the ‘registrazione’ page. Where I wrong? What’s the name of homepage? Is it home, even if it doesn’t appear to the link?
Thanks for your help!
June 19, 2013 at 7:59 am #166385In reply to: non-logged in users access to private pages
ProfC
ParticipantThanks for your quick answer.
I read the readme file but I did not understeand whicj commented code I have to edit.
In my website I have 3 public page: ‘home’ , ‘radio’ , ‘contatti’, so I add these strings:
$bphelp_my_unblocked_pages = ‘home’;
$bphelp_my_unblocked_pages = ‘radio’;
$bphelp_my_unblocked_pages = ‘contatti’;and put home in this string, since you can reach register page from home:
$bphelp_if_I_changed_my_register_slug_it_is = ‘home’; // Replace ‘register’ if you have changed the ‘register’ slug for example to ‘sign-up’but those pages are still blocked.
why?June 19, 2013 at 7:54 am #166383In reply to: Autosuggest in core?
mangtimo
ParticipantThanks Paul for clarifying.
I was just wondering if it was just me breaking something again.
Autosuggest in private message works great.
Though it tend to be slow for me when looking for usernames.June 19, 2013 at 7:50 am #166382In reply to: Autosuggest in core?
Paul Wong-Gibbs
KeymasterLabs is meant to be experiments. Sometimes, experiments go wrong because no-one’s looking after them 😉
There’s autosuggest in core for the recipient name box on the private message screen, but nowhere else AFAIK.
June 19, 2013 at 7:18 am #166377In reply to: non-logged in users access to private pages
bp-help
Participant@profc
Use this plugin. Download the zip file and upload to your plugins directory. Read the readme.txt and make the adjustments in the commented code in private-community-for-bp.php before activating the plugin.
https://github.com/bphelp/private_community_for_bpJune 18, 2013 at 8:03 am #166262In reply to: Send all private messages to admin for approval
Prince Abiola Ogundipe
Participant@imagine81, what you can do is create a function using ban array to ban some words e.g:”Phone Number”, “My address” etc…and check for the ban words in private messages.
Naijaping
June 18, 2013 at 2:23 am #166233In reply to: Send all private messages to admin for approval
imagine81
ParticipantHi Naijaping,
Your code works great for removing email addresses, however my client still wants to be able to check for phone numbers and mailing addresses. But thankyou!
Imagine
June 16, 2013 at 11:57 pm #166175In reply to: blogs in buddypress
ldjautobody
Participant@marathifacebook and @mercime, just an FYI regarding the “Facebook” issue. If you Google that topic, you will see that “Facebook” is no longer required to “sue” you, they will simply have the domain taken down, similar to the lawsuit won by “Craig’s List” which also won the right to do the same. They will not even give consideration to “purchasing” your domain…they already own it by copyright and trademark law, and just ANY name that includes the actual spelling of “f-a-c-e-b-o-o-k” applies.
A friend of mine had a similar issue and it takes about 2 weeks after your site hits the search engines for them to find it and you will be notified by the domain registrar that you have infringed on the copyright and the domain will be taken. No lawsuit necessary due a precedence case already having been tried. You will, however, be given the option to “change” the name to something…more suitable…at least in the eyes of “Facebook” and “Craig’s List”. So, “good luck” with that one…
In reference to your question regarding public and private blog posts, try the Advance Post Privacy Plug-in…however, it has not been tested with v3.5.1, so check it out first, but I have used it before and it works quite nicely allowing you to make certain posts private or not. I don’t know how well it functions with BuddyPress, but I know it is compatible with S2 which is a great membership plugin that works great!
June 16, 2013 at 7:51 pm #166171In reply to: blogs in buddypress
Marathifacebook
Participantthats plugin I already checked but it does not have public and private posts
June 16, 2013 at 3:40 pm #166163In reply to: blogs in buddypress
@mercime
Participant@marathifacebook First of all, I suggest that you change your domain name to exclude facebook unless you have a written permission from the organization. Facebook has previously won trademark lawsuits against the owners of domains that included the “Facebook” name, such as FacebookStuff.com and KillFacebook.com etc. You wouldn’t want to be on the receiving end of a lawsuit, would you?
As for your query about public and private blog posts, you can already do that using the privacy setting on the metabox in write/edit panel …
June 16, 2013 at 8:12 am #166154In reply to: Send all private messages to admin for approval
imagine81
ParticipantHi Naijaping,
Thanks for that, I will try out your function and let you know how it goes 🙂
Imagine
June 16, 2013 at 6:35 am #166153In reply to: Send all private messages to admin for approval
Prince Abiola Ogundipe
Participant@imagine81, You can use a function to remove email contact from private message:
Note: You can amend it to remove other contact aswell
Naijaping
June 15, 2013 at 7:08 pm #166128In reply to: Send all private messages to admin for approval
@mercime
Participant@imagine81 The functions you want would require some custom plugin which is not available at this time. You could hire a developer to do this for you or wait till someone creates one and release it to the public.
June 13, 2013 at 6:56 am #165903bp-help
Participant@rcain
Activity Stream Throttling done courtesy of BuddyDev:Limit friendship request throttling done courtesy of BuddyDev:
Private Message Rate limit plugin includes throttling coming soon from BuddyDev
Many captcha solutions have been out there for years.
I covered a hidded registration form field in a plugin here:
https://github.com/bphelp/bp-spam-killerI doubt this covers everything but the fight against spam is ongoing. So you have my support! 🙂
-
AuthorSearch Results