Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,201 through 2,225 (of 3,436 total)
  • Author
    Search Results
  • Monkeygregge
    Member

    Hi !
    I am really intersted in your subject, and to me disabling “Friends” in the Component Setup is not enough.
    I am setting up an alumni website for my school, and we would like directly everybody to benefit from the “Friends” capabilities without the operation of asking everybody to be “Friends”…with all the time that takes, and with experience, we see lot of people don’t care and never answer to that request.
    I tried disabling “Friends” but then the simplest function of “fullfilling a name in the private message thing” doesn’t work anymore…between other things…

    So, is it possible, is there any plugin for giving everybody all the accesses for talking, writing mass messaging, create events, etc…automatically, without asking anyone to be “Friend” ?

    Thank you very very much for you help !

    jeezyo
    Member

    drwebsitein, did you ever find a solution to this? im looking to implement a similar feature, and need to pass in the username.

    #117452

    In reply to: BP Privacy

    enderandrew
    Member

    Just use Buddypress Groups, and don’t put any content on the site outside of the private groups.

    #117451

    In reply to: BP Privacy

    enderandrew
    Member

    Just use Buddypress Groups, and don’t put any content on the site outside of the private groups.

    Andrea Rennick
    Participant

    Or, go back to using just bbpress and install a private messaging plugin if that’s all the extra you need?

    https://wordpress.org/extend/plugins/private-messages-for-wordpress/
    that’s just one i found.

    melmo
    Member

    Hi, I’m also keen to know the answer to this question – I want to run BuddyPress as a client portal for a small business, so clients can log in and create an account, then communicate with staff, but they can’t message each other (or see each other’s profiles, ideally).

    #117145
    Zen Gonzaga
    Member

    a href=&&>
    remove the -&-.. and replace it with -“-
    got problem with posting it. Sorry.

    #117144
    Zen Gonzaga
    Member

    ooh i’m sorry about that.
    a href=””>

    #117143
    Zen Gonzaga
    Member

    I found the link! YEAH :D
    i put this on the page…
    <a href="”>

    Please let me know if it helped you..
    it took me days to figure this out.
    Hope it will help me anyone.

    #117124
    IamAnother
    Member

    Excuse me, my mistake ! I meant “Hidden Groups”.
    p.s. I’m using WP 3.2, BuddyPress 1.2.9 and Jukt Micronics 1.2. template

    #117080

    In reply to: Profile rating system

    As opposed to multiple reg forms using s2member levels, I have created a business profile group for my Brands (S2 level 2). I use the s2member levels and css to hide this profile group from “consumers” (S2 level 1) on the site.

    I have then created a private group just for the brands, and created a condition loop in the member header that shows the info from the brand profile section if filled out and only if they belong to this private group.

    If this idea appeals to you and you need details let me know.

    Wish you luck with the new venture!!

    #117071
    jabutcher
    Member

    Upon further investigation I decided to replace the compose.php loaded from BuddyPress Template Pack 1.1.3 with the compose.php template from the default BuddyPress theme.

    This fixed the problem.

    Thanks to everyone who looked into this problem.
    Art

    #117049
    r-a-y
    Keymaster

    Messages are only available from your profile page:
    hxxp://example.com/members/USERNAME/messages

    Boone Gorges
    Keymaster

    What @mercime means is that several of your questions are dependent on the theme you’ve purchased, ‘executive’. WPMU.org is not the official WordPress site, but is a private company that sells themes and plugins. It’s not possible for people on this free forum to provide support for a theme that is sold privately; you should go to wpmu.org for that.

    General BuddyPress questions are welcome here, though. For instance,
    `Furthermore I don’t seem to have a members directory in my dashboard.`
    BuddyPress does not add a members directory to your Dashboard. You can find a members list at Dashboard > Users (or Dashboard >Network Admin > Users on Multisite)

    #116950

    Nevermind I found it in themes/mytheme/profile/profile-loop.php

    #116902

    Is this a theme specific to buddy press or are you referring to my WordPress theme? Where do I change it? And if it is theme specific, where in the theme could it have been altered? Thanks for the help!

    #116900
    @mercime
    Participant

    Could be a theme issue. Change to bp-default theme and see if same behavior occurs.

    #116858
    gwadholm
    Member

    Robcwright…I added to the code to fix the problem with logged out users or users who aren’t members of private groups being kicked back to the home page when they click on the name of a private group:

    function redirect_to_forum() {
    global $bp;

    $path = clean_url( $_SERVER );

    $path = apply_filters( ‘bp_uri’, $path );

    if ($bp->groups->current_group->user_has_access === true) {

    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false ) {
    if( $bp->bp_options_nav )
    bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
    }
    }
    }
    add_action( ‘wp’, ‘redirect_to_forum’ );

    This checks to see if the user has access before redirecting to the forum page as the home page. The function is found in bp_groups.php , line 187.

    Well I don’t know if this a bug or not, but I found (almost) the root of the problem and a relatively simple fix.

    I discovered that the recipients table had entries for threads that were not in the messages tables. I don’t know where these threads came from, but they were definitely there. So I changed the messaging code to generate the thread_id from the recipients table rather than the messages table.

    If this was some sort of database corruption, this was a reasonable fix for me. We don’t have enough messages for it to be a performance issue and if something else is inserting into that recipients table we shouldn’t conflict with it (assuming it is generating thread_ids in the same way).

    I really don’t know enough about BuddyPress to know if this is a core bug or some other issue related to our theme (I can’t find any other references to that table so it’s kinda wierd).

    bp-messages-classes.php:

    /* If we have no thread_id then this is the first message of a new thread. */
    if ( empty( $this->thread_id ) ) {
    $this->thread_id = (int)$wpdb->get_var( $wpdb->prepare( “SELECT MAX(thread_id) FROM {$bp->messages->table_name_recipients}” ) ) + 1;
    $new_thread = true;
    }

    #116567
    CedricFP
    Member

    Yes, but it seems that there was no solution found to that. Esssentially, I’m looking for a way to have all content visible in the group, but to disable any member from joining that group – only allowing for invites.

    A child theme removing the “Join” buttons is a pretty bad way of doing it and I don’t want to do that.

    #116557
    Tammie Lister
    Moderator

    You could take a slightly different approach and hide the content but keep the tab: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/hiding-activity-content-for-non-logged-users/

    There is also this (I’ve not used it though): https://buddypress.org/community/groups/private-buddypress/activity/

    As for the second bit.. which plugin are you using?

    #116556
    Tammie Lister
    Moderator

    I’m seeing this as well, and I’ve even seen it happen when our caching system was turned off. Could you provide a few more details as to what modules are involved or how the file caching triggers this as I would definitely like to find a way of fixing this.

    #116398
    danbpfr
    Participant

    I have the same problem with birth date in french.
    Warum ?
    According to this ticket, this would be solved in 1.3 (even if this problem was mentionned 2 years ago…)
    https://buddypress.trac.wordpress.org/ticket/3149
    Concerning private msg date, you can read this:
    https://buddypress.trac.wordpress.org/ticket/2203

    #116023
    tnd
    Member

    Alright, thank you!

Viewing 25 results - 2,201 through 2,225 (of 3,436 total)
Skip to toolbar