Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,726 through 1,750 (of 3,456 total)
  • Author
    Search Results
  • Clementkjhjkh
    Participant

    Anyone ? Please…

    #147013
    geoutah
    Participant

    When you create the group, it can be a private group. Try creating a test group that’s private and play with it. Create a test user and try it out.

    I would explore plug-ins to see if there may be a fix there for you. I’ve never tried to have this level of specific customization, usually plug-ins are the answer.

    Some of this may be theme specific.

    #146944
    @mercime
    Participant

    Depends. You might have set some groups to public and thus have public forums while you set up the others as private groups which then have respective private forums.

    #146929
    @mercime
    Participant
    Clementkjhjkh
    Participant

    Does someone know where is the problem ?
    Thanks

    #146917

    In reply to: Private Field

    Ben Hansen
    Participant

    If you are proficient at coding you may be able to figure it out, i couldn’t. the feature is going to be built into the next version of buddypress if you can’t wait and manage to figure it out please let me know cause i’d love to be able to do that as well.

    https://buddypress.org/support/topic/how-to-add-a-nobody-option-in-the-profile-privacy-options/

    Clementkjhjkh
    Participant

    Thanks,
    Actually i think that your code should work and that my problem may be not where i thought. problem.
    When i use
    define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
    it works but when i put it in a function like that, nothing happens:

    function redirect_to_forum(){
    define('BP_GROUPS_DEFAULT_EXTENSION', 'forum' );
    }
    add_action('wp','redirect_to_forum');

    So, i think that’s why nothing happens when i try to add your code.
    Do you know what’s wrong with my function ?

    jonlachlan
    Participant

    Just came across this issue. Updates in Groups that were previously public, now private, are shown to a non-member in All Activities page. However, if they open the group page, they are of course told that it’s private (nothing is shown). Isn’t there a way for the loop to just check the group privacy status for each activity item?

    This is in 1.6.1 (as WP plugin)

    #146862
    ElbowRobo
    Participant

    Bump?

    modemlooper
    Moderator

    This is not tested but you don’t want the define to run if a member is not a member of a private group.

    if ( bp_group_is_visible  &&  bp_is_group_member() ) {

    define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );

    }

    Clementkjhjkh
    Participant

    Sorry, here is what i tried :

    function redirect_to_forum() {
    global $bp;
    if( bp_is_group_members() )
    define(‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
    }
    add_action( ‘wp’, ‘redirect_to_forum’ );

    Clementkjhjkh
    Participant

    Hi,
    I have the same problem, i tried this :

    but it doesn’t work, am i doing something wrong ?
    Besides i got a warning message :

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /homez.38/centrale/www/demo/demo/INELSE/wp-content/plugins/bp-custom.php:10) in /homez.38/centrale/www/demo/demo/INELSE/wp-content/plugins/events-manager/classes/em-notices.php on line 11

    If someone has a solution, it would be really great

    modemlooper
    Moderator

    Or, if group is private and user is not member

    modemlooper
    Moderator

    Just wrap that define with code that tests if a user is a member of group.

    dennissmolek
    Participant

    I am having the exact same problem. I submitted it as a ticket:

    https://buddypress.trac.wordpress.org/ticket/4706

    What is happening is its trying to redirect to the home tab, then the change default filter moves it to the other tab, which causes the loop.

     

    Until its fixed simply add ‘/home’ to the line mentioned in the ticket.

    #146722
    jeduhu
    Participant

    Boris,

    I have a few questions. I really like what you’re offering in Shabushabu and have questions about utility.

    1. So this map can be added to each user profile to correlate to their location. Can you set it to private?

    2. On your events plugin can you set the event geo tag to correlate with the profile. Meaning if you have a profile search event, to create begin and end point for instant navigation.

    3. Is this offered to the US? I’m not sure what the prices are for us here.

    Thanks,
    Jeremiah

    #146628
    johnjf
    Participant

    Thanks, I had the pages set on private for the time being.

    #146435

    In reply to: Forums not working

    Kevin.Bowser
    Participant

    @beingblissful I would like to chat with you about your experience with Salutation. I am about to purchase it and institute forums and migrate an existing blog to a new domain that I purchased. I was really drawn to Salutation because of the look of it and the video tutorials make it look so easy. My problem is that I have not been able to get forums to work at all as described in WordPress or BuddyPress documentation. I would like to chat with you if you have time. If you do, please email me your contact info privately and I will reach out to you. My email address is kevin.bowser@live.com.

    I tried to send you this as a direct message, but to no avail. Maybe I am just not destined to use BuddyPress???

    Thanks,

    Kevin

    #146298
    ihiustler
    Participant

    @paintermommy did you ever get this to work with the wishlist plugin? Are your forums private and only for paid members?

    #146117
    Hugo Ashmore
    Participant

    @jules-colle

     

    Finished almost exactly the same requirement for a private community, certain profile fields consist of data needed to be added by the site rather than individual users, so set specific edit profile fields to super_admin only but allowed the public view, then as admin you just need to navigate to the users account and then use the admin links on adminbar to edit users profile.

     

    Users are not a BP managed item, Users belong to WP thus adding new users does not present the same xprofile fields for editing.

    #146071
    daneglerum
    Participant

    Thanks @aronprins

    I’ve tried that plugin but did not have any luck.

    I’m starting to wonder if group forums were the best architectural decision for my community. I like the ability to segregate conversations by group and to have private groups and forums but perhaps there is too much segregation. The decision for buddypress.org to move away from group based forums factors into my thinking too.

    I’ll do some more reading on how sitewide forums can be used. It seems like this implementation of bbpress is a bit more flexible.

    #145685
    @mercime
    Participant

    @ubernaut Thanks. No worries, I’m handling private BP sites at this time ;-)

    #145613
    aces
    Participant

    I’m not clear quite what you want but the end of the following post is about creating different logged in and out menus ( with a child of bp-default theme ) …
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-do-i-make-buddypress-1-6-a-private-community/#post-136021.

    Brajesh Singh
    Participant

    There was a bug with bp-default theme shipped with bp 1.6+ and any theme which is based on bp-default or copies functions from it has the same bug.

    Here is a way to fix that.

    First look for this code(or similar) in your themes functions.php

    
    if ( !is_admin() ) {
    // Register buttons for the relevant component templates
    // Friends button
    if ( bp_is_active( 'friends' ) )
    add_action( 'bp_member_header_actions',    'bp_add_friend_button',           5 );
    
    // Activity button
    if ( bp_is_active( 'activity' ) )
    add_action( 'bp_member_header_actions',    'bp_send_public_message_button',  20 );
    
    // Messages button
    if ( bp_is_active( 'messages' ) )
    add_action( 'bp_member_header_actions',    'bp_send_private_message_button', 20 );
    

    and change this line

    
    if(!is_admin()){
    

    to this

    
    if ( !is_admin()||(is_admin()&&defined('DOING_AJAX')) ) {
    

    and it will work.

    #145543
    SameOldShane
    Participant

    I’m still having issues with this as my main site is still taking buddy press settings along with my private, such as the admin bar and if i privatize one the public site also requires a login,

    Help!

Viewing 25 results - 1,726 through 1,750 (of 3,456 total)
Skip to toolbar