Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,276 through 1,300 (of 3,869 total)
  • Author
    Search Results
  • #241426
    danbp
    Participant

    Would it work if I would not connect the “members” page with BuddyPress in the settings, set the page to private and pull the dynamic content for the members list by a stortcode?

    No, no, no. That page is core, must exist and should be blank. Just a (custom) title.

    Do I need to learn to code to use BuddyPress?
    No, but it’s better if you know some basics.

    To make the member directory for loggedin users only, you have to:
    – create a child-theme (is explained on WP and BP codex)
    – copy/paste index.php from wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/index.php
    to
    /wp-content/themes/your_child/buddypress/members/index.php

    In this copy, right after <div id="buddypress">, in the existing php opening tag just after, you add if(is_user_logged_in() ):

    At the end of the file, you’ll find the closing div tag of #buddypress.
    Just before this closing tag, again an opening php tag, you add endif; before the do_action you’ll see there.

    If you did it correctly, the directory is now only be visible for loggedin users.

    Some basics:

    open php tag <?php
    closing php tag ?>

    open html tag <div>
    closing html tag </div>

    #241425
    nmschaller
    Participant

    Hello danbp,

    So far i understand you use bbPress and now you want a members directory, and eventually some additionnal fields on user’s profiles. And most of this should be private or “members only”, right ?
    >> Correct, combined with private bbpress forums on a website with also public content.

    I have set the “members” page I created as private, but it is still displayed when I go on the page as a logged out user. Why is that so?
    Would it work if I would not connect the “members” page with BuddyPress in the settings, set the page to private and pull the dynamic content for the members list by a stortcode?

    I can read into the codex of course, but do I need to learn to code to use BuddyPress?

    Nicole

    #241424
    danbp
    Participant

    Hi @nmschaller,

    bbPress is a separate plugin and BuddyPress doesn’t manage bbPress. For questions about forum settings, you can use the bbPress support.

    When you use BP groups component, you can add a forum to each of them. In this case only, you have to install bbPress. Of course you can also use bbPress as standalone on a BP install, or use bbPress with WordPress, without BP.

    BP doesn’t use “pages” but templates, and the only pages created during installation are in for internal purpose. The “member” page is used to show the member directory, but also profiles or members activities. This dynamic content is displayed on different templates, depending the context, and using WP’s page system to fire all that via a same page slug (aka internal path).

    your-site/members/some/thing/ where /some/thing/ is using his own template part displayed on “members page”.

    So far i understand you use bbPress and now you want a members directory, and eventually some additionnal fields on user’s profiles. And most of this should be private or “members only”, right ?

    The main problem is that you want some custom behave that need some knowledge (you seem to have), but you cannot edit functions.php Unfortunately, this is the place where to add customisation. And what to tell about bp-custom, which is another crucial cusmisation file.

    You want to drive and have no steering wheel ! Annoying… 😉

    The question is Do you need BuddyPress or can you use another solution ? 🙂

    Depends your project, really. Members directory or extended profiles can be done with separate plugins.

    Read here:
    http://chrislema.com/best-wordpress-membership-plugin-2014/

    Or digg into the Codex if you decide to use BuddyPress.

    #241360
    Paul Bursnall
    Participant

    This works for me:

    if( is_user_logged_in() ) {
        $page = get_page_by_title( 'Dashboard');
        update_option( 'page_on_front', $page->ID );
        update_option( 'show_on_front', 'page' );
    }
    else {
        $page = get_page_by_title( 'Home' );
        update_option( 'page_on_front', $page->ID );
        update_option( 'show_on_front', 'page' );
    }

    Added to functions.php if anyone else references this post.

    I use My Private Site to keep the bulk of the site hidden from visitors / search engines – https://wordpress.org/plugins/jonradio-private-site/

    Thanks for your help.

    #241328

    In reply to: BP crashes Forumsearch

    danbp
    Participant

    bbpress is the plugin, by type was meant site wide forum or group forum.

    can I provide you a link via pm or mail?

    No ! You’re on a free help support, maintained by volonteers.

    If you want private assistance, use the job board forum where you can hire a freelancer or a dev, but probably not for free.

    danbp
    Participant

    Which result when you use Twenty Fifteen theme ?
    Do you use some custom functions on group page ?

    Also, as of Codex https://codex.buddypress.org/administrator-guide/groups/
    This is a private group

    Options

    Group content and activity will only be visible to members of the group.

    #241227
    Henry Wright
    Moderator

    The messages_mark_thread_read() function will mark a message thread as read. It accepts the thread ID. So, to mark read all new private messages if they have a given subject, you could do this:

    function creativesinside_mark_read( $message ) {
    
        // Be sure we're working with an array.
        if ( is_object( $message ) ) {
            $args = (array) $message;
        } else {
            $args = $message;
        }
    
        // Mark as read.
        if ( $args['subject'] == 'comment on your post' ) {
            messages_mark_thread_read( $args['thread_id'] );
        }
    }
    add_action( 'messages_message_sent', 'creativesinside_mark_read' );
    #241059
    jacipetersilie
    Participant

    Hello everybody,


    @mariatrier
    , I am also paying cometchat for that and will let you know how it goes. They estimated 8 working hours, begun work a week ago and haven’t replied ever since to my question how far they are.


    @djsteveb

    Thank you for your time. From your feedback I understand that my description wasn’t accurate. i really mean something like facebook chat. So no admin->many private message. I will check out that quick chat plugin.

    #240989
    djsteveb
    Participant

    @jacipetersilie – best thing I have seen that is close to fbook like chat thing is the free “quick chat plugin” – however I do not use it to show as a widget on all pages and give a popup to users – as I think that would tax the server and web browser more than is reasonable if you have dozens of users – it might work, might not. I use quick chat for a single chat room on a single page.

    From what you are describing however, I wonder if you really need a chat plugin to do what you are saying – one to many message – like the super-admin send a message to all users, kind of privately… I think there are some plugins in the wild that allow admin to send an email (Which I guess would be a buddypress inbox notification (?)) – to all users… that would “one to many” message – and give people a way to “message you back” privately I think.

    I have also seen a plugin that will allow super admin to add a note to all dashboards – although I guess many bp users will not go to their dashboard when using most features –

    I suppose you could also assign users to a group, and select settings for them to get a notice email when a new group message is sent. Which may achieve what you are describing.

    If you just want one-to-many messaging chat with users who are actually logged into a chat room, I think it would be easy to do that with nusoft’s av-chat, there are settings in which you can make it so only certain users can post in the chat, have moderated chat, turn off pms and stuff like that – I guess I am not clear on what exactly you are trying to accomplish as I don’t use fbook and am not familiar with the kind of one to many fbook messaging you are talking about.

    #240977
    LeeBinder
    Participant

    no – you need to be logged in as a user to test http://transinformation.net/community/gruppen/d-a-ch-im-licht/members/

    No private mmsging here, so reply with your email address so I can send you a login. You can delete that post with your email address right away because I get it via email.

    #240968
    LeeBinder
    Participant

    Henry, how I can I send you a login PW so the link is accessible for you? There does not seem to be a private msg function here, and when I try send it to you via email to [edited], the email bounces right away.

    Thanks,
    Lee

    #240718
    Henry Wright
    Moderator

    I can view anyones messages when logged out.

    And you’re definitely talking about what BuddyPress refers to as private messages?

    Can you try again after disabling all plugins, reverting to TwentyFifteen and removing all custom code? If you still get to see private messages when logged out then that shouldn’t be happening.

    #240716
    Henry Wright
    Moderator

    With standard buddypress (no modifications) you can freely view anyone’s messages without even logging in

    That shouldn’t be the case for all users. Only users with admin capabilities should be able to do that. Are you able to see people’s private messages when logged in as a subscriber? If so, that’s a bug

    #240715
    CodeMonkeyBanana
    Participant

    With standard buddypress (no modifications) you can freely view anyone’s messages without even logging in. Personally I think that is not very good security/privacy, whatever you want to call it.

    I made a ticket as I don’t think that “private messages” should be publicly viewable
    (https://buddypress.trac.wordpress.org/ticket/6504#ticket)

    What privacy/security checks would you recommend for people who don’t want users private data publicly viewable?

    #240712
    CodeMonkeyBanana
    Participant

    @henrywright How would you do the security check? If I follow current way buddypress does things with loading the template part for the tab any logged out user can just modify the javascript and get into any profile page they like. It’s first time I’ve done this so appreciate the advice.

    what harm could come from a visit to a simple profile tab?

    You could see hidden data that user did not want displayed. I believe if you hold data and say it is private then you should attempt to secure it. You could also view their messages and private groups.

    The thing I am struggling to understand is how buddypress functions work on the post request. I wrote some test code and data is correctly populated from displayed user. Does buddypress read a referrer value somewhere on every ajax post?

    #240593
    Julia_B
    Participant

    I’m not sure @danbp, as you can see that post was from 8 months ago and the issue with group mentions has only appeared since I installed the latest buddypress update a few days ago.

    I don’t think it can be the them because the issue still happens when I switch to the default Twenty Fifteen theme. And I have tried deactivating all the plugins and that hasn’t resolved it so I don’t think it’s that. But I’m not a developer, you clearly know more about these things than I do!

    If you could have a look that would be great. Is there a way I can send you a test user account privately?

    Thanks for your help.

    #240573
    The Dux
    Participant

    Thanks for replying. I was thinking of removing, later maybe having an alternate version, header for a number of pages. All messages, inbox, outbox etc. Also notifications, friend requests etc. Pages that will be private to you as a user.

    I have run into something though, I can’t seem to make a hook work?

    function testFunction() {
    echo "Hello World!";
    }
    add_action(‘bp_init’, ‘testFunction’);

    I’ve put this in /plugins/bp-custom.php which also have other functions that does work.

    #240503
    Henry Wright
    Moderator

    Hi @richgraphicsstudio,

    We need Groups and also Private Groups

    I’d activate the Groups component.

    Need to be able to upload face pictures

    With BuddyPress, uploading profile photos is possible by default.

    Hope this helps?

    #240469
    sylkitt
    Participant

    So Kleo support says Buddypress NEVER had notifications for comments or likes, only for private messages and friend requests. Is that true? Comments and likes are an important part of a social network and my client wants all of them to be fully functional, not only private messages and friend requests.

    r-a-y
    Keymaster

    @dono12 – I have split your post into a separate thread.

    About the “Starred” feature, do you mean the star private messages feature that you can access under “Messages > Starred”? If not, then this isn’t related to any change in BuddyPress 2.3.0.

    Your issue doesn’t sound like it is related to the Messages component, so can you clarify?

    notpoppy
    Participant

    I’m still trying to get to the bottom of why some of my users are being shown this message:

    “You cannot reply to this topic”

    As I mentioned above, whenever I run the “Remap existing users to default forum roles” option in /wp-admin/tools.php?page=bbp-repair I end up with a blank screen. It seems like this could be related to the problem – can anyone explain what this option does and how to fix it so it runs correctly?


    @danbp
    Thanks for the offer of help. Can I pass on this information to you privately somehow?

    danbp
    Participant

    Hi @godsdead,
    This should not be displayed to non-members. Normally, it is not displayed !
    By default, BP private group content is only for

    Only users who request membership and are accepted can join the group.
    This group will be listed in the groups directory and in search results.
    Group content and activity will only be visible to members of the group.

    Could it be possible that Paul invited mr dork to join the group ?

    Henry Wright
    Moderator

    Hi @jaykdoe

    You could try this:

    function my_private_profiles() {
    
        // Bail if not a profile page.
        if ( ! bp_is_user_profile() )
            return;
    
        // Allow admin users.
        if ( current_user_can( 'manage_options' ) )
            return;
    
        // Allow the profile owner.
        if ( bp_loggedin_user_id() == bp_displayed_user_id() )
            return;
    
        // If we get to here, redirect to homepage.
        bp_core_redirect( home_url() );
    }
    add_action( 'init', 'my_private_profiles' );

    You can copy and paste it into your theme’s functions.php file. Please note I haven’t tested.

    jaykdoe
    Participant

    I would like all member profiles to be completely private. Members should only be able to access their own profile and nobody elses. Admin accounts should have access as well, but all profiles should be completely private to all other members.

    I have done some research and have found a few people looking for similar solutions, but none exactly like this. Additionally, it appears there may have been some plugins in the past that would have helped but I can no longer find them in the wordpress plugin repository.

    Does anyone know of any plugins or custom code I could add to bp-custom.php to accomplish this?

    Thanks in advance!

    Mickey
    Participant

    That should not be an issue whatsoever with 2 John Smiths, two should should up and you click on whichever one you want. Most people I know actually deactivate the activity system. When they message the private message by clicking on profile, most communities are not the type everyone knows everyone, its actually the other way around, those types are in minority and buddypress seems to cater to them.

    Its actually a very simple solution, implement an option, with username and another one first and last name.

Viewing 25 results - 1,276 through 1,300 (of 3,869 total)
Skip to toolbar