Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,326 through 1,350 (of 3,450 total)
  • Author
    Search Results
  • whitewolf1988
    Participant

    @bp-help WordPress is free and so’s buddypress. If you dont give me free then you suck!

    bp-help
    Participant

    @whitewolf1988
    Negative! I want a lot but I ain’t to old for my wants to hurt me! So please don’t ask this again!

    whitewolf1988
    Participant

    @bp-help I need for free! I want all for free please!

    bp-help
    Participant

    @whitewolf1988
    Negative! The only free version is on the WP repository.

    whitewolf1988
    Participant

    @bphelp Can I have for free please?

    bp-help
    Participant

    @whitewolf1988
    Updated to 3.6 and I also have a version that allows to unblock entire categories but I am thinking on monetizing it because hardly no one donates and I think the flexibility of unblocking an entire category is worth a couple bucks. Let me know if your interested.

    bp-help
    Participant

    @whitewolf1988
    Just updated Private Community For BP to 3.5 you can now unblock your posts as well as pages.

    #169644
    meg@info
    Participant

    hi @tduschei, i suggest you use private-community-for-bp-lite plugin by @bp-help

    https://wordpress.org/plugins/private-community-for-bp-lite

    #169630
    shanebp
    Moderator

    @westwoodchristopher

    We should continue this conversation in private.
    You can contact me via my profile info.

    #169616
    @mercime
    Participant

    @rairai-ni What other plugins do you have activated in your site? Check if those are compatible with latest BP version. If not, deactivate those plugins and check if members of private group can see group’s contents.

    #169545
    bp-help
    Participant

    @grmadmin
    It makes no logical since to view the registration if you already have the credentials to be logged in. That is default behavior. Instead of using another computer to check it why not just use a different browser on the same computer? Alternatively you could use the same browser by using firefox’s private window or chromes incognito window.

    bp-help
    Participant

    @whitewolf1988
    There are other plugins out there that will accomplish this. This plugin is primarily for BP and bbPress pages. I may however integrate this in a future update.

    #169235
    LogicWolf
    Participant

    Hi David,

    Hoping I’ll be able to help. I’ve seen alot of questions on the topic of How To Change and Reorder BuddyPress Group tabs and not much great direction. Hopefully you won’t be saying that after my posts… What I’m really hoping is someone comes in with a simpler, more elegant solution 🙂

    Were you able to control the standard tabs?

    For the standard group tabs, you can control them directly like this:

    if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) 
    {
            $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10;
            $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60;
            $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110;
    }

    So the code to put in functions.php might look like this:

    function whff_setup_nav() 
    {
    
      if (isset($bp->groups->current_group->slug) && $bp->groups->current_group->slug == $bp->current_item) 
      {
         $bp->bp_options_nav[$bp->groups->current_group->slug]['home']['position'] = 10;
         $bp->bp_options_nav[$bp->groups->current_group->slug]['members']['position'] = 60;
         $bp->bp_options_nav[$bp->groups->current_group->slug]['notifications']['position'] = 110;
    }
    
    } 
    add_action( 'bp_setup_nav', 'whff_setup_nav', 100000 );

    CUSTOM BUDDYPRESS GROUP TABS
    Now, the non-standard tabs are the tricky ones. You can’t access them through $bp->bp_options_nav (at least I couldn’t figure out how to do this.)

    Nonstandard Group tabs through the $wp_filter global. A good starting point is to dump the $wp_filter variable and get a look at it’s guts. Add this code in functions.php:

    global $wp_filter;
        
    foreach ( (array)$wp_filter as $key => $value ) 
    {
       echo '<pre>';
       echo '<strong>' . $key . ': </strong><br />';
       print_r( $value );
       echo '</pre>';
    }
    

    $wp_filter is a bunch of nested arrays. Search through the output for your Group Tab Names (i.e. search for “Calendar”) and you will find something like this:

    [00000000746c6153000000004e38ec1f_register] => Array
                    (
                        [function] => Array
                            (
                                [0] => BP_Group_Calendar_Extension Object
                                    (
                                        [visibility] => private
                                        [enable_create_step] => 
                                        [enable_nav_item] => 1
                                        [enable_edit_item] => 
                                        [name] => Calendar
                                        [slug] => calendar
                                        [admin_name] => 
                                        [admin_slug] => 
                                        [create_name] => 
                                        [create_slug] => 
                                        [create_step_position] => 81
                                        [nav_item_position] => 40
                                        [nav_item_name] => 
                                        [display_hook] => groups_custom_group_boxes
                                        [template_file] => groups/single/plugins
                                    )
    
                                [1] => _register
                            )
    
                        [accepted_args] => 1
                    )
    

    That’s your Group tab and all the hooks you need to change attributes (in this case it’s the tab that says “Calendar”.)

    But… unfortunately you can’t use the [00000000746c6153000000004e38ec1f_register] as a handle — that string is random and changes every time. But, now you know the class name is BP_Group_Calendar_Extension Object and you can search for that in the $wp_filter array and make the changes.

    Hope this gets you closer, let me know how you make out. Cheers David!

    #169213
    kuching
    Participant

    I did further tests.

    If I try to disable bbpress only, I still don’t get it working; however I noticed that I can attempt to send private message replies – although it will throw an error after redirect and page reload.

    If I try to disable all other plugins (including bbp) it still doesn’t work. Could it be my own theme? It’s hard to debug…Anyone ever ran across similar problems?

    🙁

    #169167
    b1gft
    Participant

    On the default theme I just removed it from the menu bar. On the other theme which automatically shows pages, I made it private.
    Same results both ways, stoped the links working.

    #168939

    In reply to: BuddyPress 1.8 Issue

    GhostPool
    Participant

    I already have the following in my custom BP functions file:

    if(bp_is_active('friends'))
    		add_action('bp_member_header_actions', 'bp_add_friend_button');
    
    	if(bp_is_active('activity') && bp_activity_do_mentions())
    		add_action('bp_member_header_actions', 'bp_send_public_message_button');
    
    	if(bp_is_active('messages'))
    		add_action('bp_member_header_actions', 'bp_send_private_message_button');
    
    	// Group Buttons
    	
    	if(bp_is_active('groups')) {
    		add_action('bp_group_header_actions', 'bp_group_join_button');
    		add_action('bp_group_header_actions', 'bp_group_new_topic_button');
    		add_action('bp_directory_groups_actions', 'bp_group_join_button');
    	}

    As I say these buttons displayed in the theme in v1.7.3, they only disappear in v1.8. I think you’re right of course, it looks like a theme issue, I just cannot figure out what changed in v1.8 to stop these buttons working in my theme.

    #168900

    In reply to: BuddyPress 1.8 Issue

    GhostPool
    Participant

    Nobody else has had the same issue? Lets try a different tact. Has there been any changes made to private message, add friend and public message buttons in 1.8?

    Henry
    Member

    Hi @mercime

    The thread example I posted “username/messages/view/30/” can actually have more than two members. Conversations can have lots of members.

    Obviously I can tell if the last message in the thread was sent to me by looking at it. I wanted to know how to check programatically. Sorry if I didn’t make that obvious. 🙂

    @mercime
    Participant

    How can I tell if that very last message was sent to me from somebody else or sent by me to somebody else?


    @henrywright-1
    Per structure of the example link you provided username/messages/view/30/ there are only two members in that thread, you and one other member. If the very last message has the avatar/username of the one other member with text e.g. “Sent July 12, 2013” then that message was sent by that one other member in the thread to you. Otherwise, if you see your avatarusername there at that very last message, then you sent that message to the one other member in that thread.

    Tecca
    Participant

    EDIT: Read that completely wrong.

    Henry
    Member

    Hi @mercime,

    Apologies, let me explain..

    If you see the message listed there then the message was sent

    A private message thread can end up with many messages. Some of the messages in the thread were sent by you to a site member and some of the messages in the thread were received by you (sent to you by a site member).

    I am interested in the very last message in the thread. How can I tell if that very last message was sent to me from somebody else or sent by me to somebody else?

    Hope that helps?

    @mercime
    Participant

    @henrywright-1 Not quite clear. If you see the message listed there then the message was sent. As to whether the other member received the message, not sure until you test it yourself in your installation. If this is not what you’re referring to, please be more specific 🙂

    #168779

    In reply to: BP Groups and Forums

    Faramarz
    Participant

    @mercime.. will do. Question, do I have to configure a wildcard for my websites? Here is my scenario: I have one main site WITHOUT buddypress installed and a sub-site WITH buddypress and I only want to have these features on my sub-site: Forums, Groups, Extended user profiles, Private messaging and Friends connection.

    Also, I want my sites addresses to look like these

    My Community site: http://www.domain.com/community .. also http://domain.com/community (without www) should be accessible

    And my main site: http://www.domain.com/.. and http://domain.com/ (without www) should be accessible.

    What kind of settings should I use to accomplish this?

    nando99
    Participant

    this makes buddypress unsuable for me… can anyone help?

    #168692
    bp-help
    Participant

    @ericaeide
    Have you tested the plugin with all other plugins other than BP and bbPress deactivated because it works pretty sweet for me and I am not just saying it because it is my plugin? When I say deactivate all but BuddyPress and bbPress it means all and not just the ones you choose to leave activated. This is basic troubleshooting procedures!

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