Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,876 through 1,900 (of 3,463 total)
  • Author
    Search Results
  • Tammie Lister
    Moderator

    Hi k12onos, it’s weird you say you get this with the default theme as well. Could you provide a link perhaps to se this on your site – I understand it may not be live though.

    Just as a check, are you using any plugins on top of BuddyPress? If you are have you made sure they are also updated for BuddyPress 1.6? I’m thinking there perhaps could be a scripting error from those.

    #138564
    queenieb
    Member

    Sure @karmatosedhttp://wisdomsistercircles.com/family/groups/piggyback-oprahs-lifeclass/
    Username/PW: tester
    Yes I do have other plugins active. The only BP one is Private BuddyPress.

    dannyjimmy
    Member

    they appear unused and not working.

    right. One way they’re not working is that they don’t even report the right info. I don’t recall which it was, but I ran one of those functions, and it was printing Private in a public group.

    I’m not sure what you mean “are you sure you’ve setup your $group variable correctly?”. In my thinking, BuddyPress sets it up, not me; I’m just trying to reference it. I copied that $group->status setup out of the definition for bp_get_group_type() in bp-groups-template.php.

    I’ll give a whirl to the `bp_get_group_type()`, since that demonstrably at least produces the correct group visibility level; my trick will be to use its output in a conditional.

    Ok, so `bp_group_type` is what prints text to the page, `bp_get_group_type` seems to summon the text as a returned value (which bp_group_type() uses for its printing)


    SUCCESS!


    `<?php if (bp_get_group_type()== "Public Group")
    print “foo”
    ?>
    <?php if (bp_get_group_type()== "Private Group")
    print “bar”
    ?>`

    On a private group, I saw foo outputted and no bar. So it works.

    It feels less than elegant. It would be more elegant to just use the variables that bp_get_group_type() calls. But for now, it works.

    Thanks, @RogerCoathup, for the guidance :-)

    #138220
    lolalulu
    Member

    Hi Paul, yes they’re all up-to-date:

    – Akismet (2.5.6)
    – bAll-in-One Event Calendar (1.8)
    – BP Labs (1.2.2)
    – BuddyPress Group Email Subscription (deleted)
    – BuddyPress Twitter (1.2)
    – Easy Contact Forms (1.4)
    – Featured articles Lite (2.4.9.1)
    – Google Analytics for WordPress (deleted)
    – HL Twitter (2011.7.30)
    – jQuery Colorbox (4.4.1)
    – KK I Like It (1.4.1)
    – Private WordPress (1.3.4)
    – Section Widget (3.1)
    – U BuddyPress Forum Attachment (1.2.1)
    – WP Live Stream (1.2.1)
    – WP User Frontend (1.1)

    Could these have anything to do with the problem? I tried deleting/deactivating them all but those problems still exist.

    #138124
    raminjan
    Participant

    you know the check boxes let me post a screen shot from image shack. I am referring to this picture it is your plugin. You have the “let the user decide” drop down option but if you could just please add the default “friends only” check boxes and add the private messaging it would be superb. I would personally greatly appreciated thanks. I tried others but it was too much of hassle for user if they would want to go that deep I want something simple as yours so even my grandpa would be able to set his privacy settings thanks again.

    http://imageshack.us/photo/my-images/17/thisap.jpg/

    Ughh…excuse my frustration.

    Scope and Objective: to enable the Admin (me) to create user accounts. To capture the username created and pro grammatically write to an external file in order to allow user to authenticate though our private authentication method. And to enable new user to receive a welcome email at time they get setup.

    I do not care anything about when/how/why/or where they login or activate themselves so as to appear in BuddyPress. That is all down stream stuff that has nothing to do with my process.

    The only effective hook I have found is the `add_action(‘user_register’, ”);` Works like a charm.

    However, in order to get the user to be seen by BuddyPress I need to go through step #2 and Add New User in the Buddypress Admin page. That is where I tell WP/BP they are allowed access to the “site” and it is also where they get their role assigned.

    I have over 200 users to setup in the next week. If I could just cut down my process time by 50% — that is to eliminate the 2 step process and make it a 1 step process — I would be a little happier.

    I need to get the Buddypress equivalent hook to WP’s `add_action(‘user_register’, ”);`

    That is why I am asking for an enhancement to BP to get an equivalent hook. Down the road it will make my setup life easier.

    #137863
    Paul Wong-Gibbs
    Keymaster

    I’ve edited out your KEYs and SALTs.. those are private, too :)

    ok – so here is what was missing – there needs to be an ajax call that has to be made when the button is clicked :) that is what actually does the trick

    `
    $j(“div.signupbutton a”).live(‘click’, function() {
    var gid = $j(this).parent().attr(‘id’);
    gid = gid.split(‘-‘);
    gid = gid[1];

    var nonce = $j(this).attr(‘href’);
    nonce = nonce.split(‘?_wpnonce=’);
    nonce = nonce[1].split(‘&’);
    nonce = nonce[0];

    var thelink = $j(this);

    $j.post( ajaxurl, {
    action: ‘joinleave_group’,
    ‘cookie’: encodeURIComponent(document.cookie),
    ‘gid’: gid,
    ‘_wpnonce’: nonce
    },
    function(response)
    {
    var parentdiv = thelink.parent();

    if ( !$j(‘body.directory’).length ) {
    location.href = location.href;
    //do stuff that you want to do on successful request send
    parentdiv.fadeIn(200).html(“Thanks for signing up”);
    }
    else {
    $j(parentdiv).fadeOut(200,
    function() {
    parentdiv.fadeIn(200).html(response);
    }
    );
    }
    });
    return false;
    });
    `

    false positive. The button does not seem to work on another page even though it has the right link. I am looking for the related form now :(

    earlier post – Ok I am guessing that I need to pass a group object to the bp_get_group_join_button function and not the name of the group. So my next question is – is there a way to get a group object if I know a group name?

    Managed to get it done finally.

    `
    <?php
    global $wpdb;
    $mgroup_name = “mygroupname”;
    $myrows = $wpdb->get_results(“SELECT * FROM wp_bp_groups where slug=’$mgroup_name’;”, OBJECT);
    if (count($myrows)>0) {
    $group1 = $myrows[0];
    $buttondata=bp_get_group_join_button($group1);
    }

    ?>

    var registrationbutton = “”;
    `

    Would this code work “ to get the registration button for the group?

    Update – I tried using the link /groups/group_name/request-membership/ but that is not working

    #137510
    juanmaguerrero
    Participant

    Hi, @raminjan you can certainly achieve that, both making it yourself working at code level or (what I suggest) start with a plugin that achieves the “private community” functionality and set yourself a “front page” (you’ll use a modified version of the login page I guess ;) ).

    Here are some helpful links on how to do what you need:

    http://wpmu.org/buddypress-news-create-your-own-private-buddypress-community/
    http://www.1stwebdesigner.com/tutorials/buddypress-collaboration-system/
    https://wordpress.org/extend/plugins/buddypress-private-community/
    https://wordpress.org/extend/plugins/private-buddypress/

    Hope it helps! cheers,

    -JM

    #137465
    @mercime
    Participant

    @raminjan know that we are all unpaid volunteers helping out here, living in different time zones and have lives outside of BP and WP.

    You have created many number of topics, some of which I answered and other topics were answered by others. And private messaging is turned off because others have abused it already.

    BuddyPress is an opensource software, i.e., free and we try to help out as many people as we can, not just one. And when I was still a student, I recall doing my own research (Google et al) when I didn’t know the answers. So be patient and stay cool.

    #137394
    Paul Wong-Gibbs
    Keymaster

    Would the ‘private’ group type work for you? It’s not trivial (or maybe even possible) to add a new type of group privacy without serious work.

    #137337
    Steve Ford
    Participant

    OK, better question, anybody successsfully deactivate their BBpress forums and successfully activate the buddypress sitewide for forums? I am using worpress 3.4 + Buddypress 1.5.2 and here is an example of my site from the bbpress install:
    http://privateenglishportal.com/forums/

    #137140
    Hugo Ashmore
    Participant

    I wouldn’t trust anything reported by a automated scanner, how does it know what is being done to sanitize user data?

    WP has a range of functions available to deal with data sanitization, as BP is built by a core team extremely familiar with WP functions and best practises and including a WP employee amongst them it follows that all best practises for handling data are adhered to.

    If you think not then you will probably need to run a few more tests that are known as reliable and report your findings directly and privately to one of the core BP team.

    #137032

    In reply to: Private profile fields

    valuser
    Participant

    In 1.6 beta 2 https://buddypress.org/2012/07/buddypress-1-6-beta-2/ there is a facility to restrict visibility of profile fields to —-> Anyone, Logged In Users or My Friends.

    In addition there is https://wordpress.org/extend/plugins/buddypress-profile-privacy/ for earlier versions of buddypress. This can restrict visibility of profile fields to —-> Everyone, My Friends, or Only Me

    #137026

    In reply to: Private profile fields

    interglobalmedia
    Participant

    I’m interested too. Some users might want that.

    #136807
    Roger Coathup
    Participant

    If you are using the bp-default theme —

    All you have to do is login, visit someone’s profile, and the send message buttons are there

    #136802
    lizat
    Participant

    Ok, in that case can you point me at the documentation to make it happen. i ahve not found getting round the codex that easy, probably me being dense but if you can ahelp that would be great,

    Thank you

    #136788
    Roger Coathup
    Participant

    BuddyPress supports private messaging ‘straight out of the box’ by default (‘send message’).

    Do you mean ‘instant messaging’?

    #136768
    LukeJJones
    Member

    Had to set my wordpress timezone to UTC, Save Settings, and then set it back to my timezone offset and now it is working.

    #136759
    rossagrant
    Participant

    Haraldo, there is nothing wrong with your install, there is NO built in way to message all users in BP. The site notification will merely place a widget type notice at the top of your sidebar for all logged in users, which thy can then choose o close. It isn’t emailed or passed as a private message.

    There are a couple of old plugins for this such as: https://wordpress.org/extend/plugins/buddypress-mass-messaging/screenshots/

    It’s an option that is useful, HOWEVER, I would strongly recommend you export your users to CSV. Again export plugins are available and import people into a 3rd party email service like Mailchimp.

    This is far better for email marketing, however in itself is a bit tricky, as unless your members have signed up or opted into a list, it’s technically breaking the T&C’s of all 3rd party mail apps.

    The problem with sending email direct from your server is if you get people unwittingly or deliberately labelling your mail as junk/ spam in clients like hotmail, yahoo and gmail, the ip address of your server can get blacklisted.

    At that point NO mail at all from your server is going to get through to those services, not just for the accounts that labelled you as spam but your server will be blocked and mail won’t reach anyone with a hotmail address etc.

    Sounds dramatic but it could kill your community if you aren’t careful.

    You should always use a 3rd party.

    Rules are still incredibly stringent though. You are generally allowed one spam complaint in every 1000 emails sent.

    Hope that helps!

    #136637

    In reply to: Private Activity Feed

    andyseiler
    Member

    Also, It says that the groups “Activity Stream” can be made separate, but I still see it on personal streams.

Viewing 25 results - 1,876 through 1,900 (of 3,463 total)
Skip to toolbar