Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,401 through 1,425 (of 3,450 total)
  • Author
    Search Results
  • #167113
    shanebp
    Moderator

    Messages send is okay.
    Just sent to kizmark and oz_admin

    You have to use the correct name: kiz mark will fail.

    #167111
    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

    #167046
    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_lite

    #167042
    modemlooper
    Moderator

    Don’t think that exists but sounds like a good plugin.

    #166905
    Henry
    Member

    Have 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/

    #166572
    @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/

    #166526
    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_bp

    #166515
    ProfC
    Participant

    @bphelp

    Hi 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,
    Gabriele

    #166504
    agreenmail
    Participant

    Using 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.)

    #166502
    @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

    #166476
    ProfC
    Participant

    Has 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

    #166462
    ProfC
    Participant

    dear @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!

    #166385
    ProfC
    Participant

    Thanks 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?

    #166383

    In reply to: Autosuggest in core?

    mangtimo
    Participant

    Thanks 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.

    #166382

    In reply to: Autosuggest in core?

    Paul Wong-Gibbs
    Keymaster

    Labs 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.

    #166377
    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_bp

    #166262

    @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

    #166233
    imagine81
    Participant

    Hi 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

    #166175

    In 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!

    #166171

    In reply to: blogs in buddypress

    Marathifacebook
    Participant

    thats plugin I already checked but it does not have public and private posts

    #166163

    In 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 …

    #166154
    imagine81
    Participant

    Hi Naijaping,

    Thanks for that, I will try out your function and let you know how it goes 🙂

    Imagine

    #166153

    @imagine81, You can use a function to remove email contact from private message:

    http://pastebin.com/jZeThNEv

    Note: You can amend it to remove other contact aswell

    Naijaping

    #166128
    @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.

    bp-help
    Participant

    @rcain
    Activity Stream Throttling done courtesy of BuddyDev:

    BuddyPress Rate Limit User Activity

    Limit friendship request throttling done courtesy of BuddyDev:

    BuddyPress Limit Friendship Request

    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-killer

    I doubt this covers everything but the fight against spam is ongoing. So you have my support! 🙂

Viewing 25 results - 1,401 through 1,425 (of 3,450 total)
Skip to toolbar