Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 601 through 625 (of 3,490 total)
  • Author
    Search Results
  • #265045
    bigbankclub
    Participant

    So I’m guessing — that for each user I want share a unique item I need to edit code?

    ** The idea is to share information for the each user; but unique to each user.

    So 100 users need to access a private link unique to them — I think this process will need one to create a page each time?

    #264932
    Henry Wright
    Moderator

    Being a premium theme the best thing to do is contact their support team. Unfortunately, because the SocialChef theme’s code is private there’s not much we can do here to help.

    #264679

    In reply to: How do I??

    jayhova4x4
    Participant

    Yes, That is to say members of a specific group have full access to forums that that group has privileges to. If a forum is a child forum any group that has access to the child has access to the parent and the parent’s parent etc. Forums to which a user does not have access might be either private or hidden.

    #264443
    Dominic Bowkett
    Participant

    you can hide Rss feed link from public to private.

    #264255
    modemlooper
    Moderator

    There is nothing like this. Would make a great plugin. BuddyPress allows people to request group membership for private groups. Change a group to private and the “join” group button becomes “request membership”

    auto join plugin based on role https://www.buddyboss.com/purchase/buddypress-auto-group-join/

    #264182
    mrjarbenne
    Participant

    The easiest way to do that would be to set up Private Groups, then manually control the membership list of those groups. The main activity feed becomes the public space, and the groups unlock more content.

    A more extensive answer is a plugin like https://s2member.com/ which integrates with BP and adds more of what you are looking for.

    #264123
    imauser2
    Participant

    Thank you @djsteveb.

    Private content should be certain pages so I whink is under control.

    About ‘automatic sending of emails when profile field changes’ I found Better notification plugin.

    I have to check the options you mention but I think Buddy Press + Better Notification will be my option.

    #264119
    djsteveb
    Participant

    pretty sure the first three things you mention could be done with bp – depending on how you want the ‘private content only available certain users’ – may be easy (profile field marked as ‘friends only can view’ – however if you mean private content like pics or something… I believe it gets much more complicated, and if you want to restrict by different roles other than friends or public..

    you might want to experiment with wp and “s2 member”.. “press permit core” or the wpmudev membership plugin or some of the others.

    the ‘automatic sending of emails when profile field changes’ – no idea how that would work with any of those systems – although someone that knows php and wp could probably whip up something custom for that with wp or bp – I am not aware of anything like that happening out of the box with bp… and I have not searched to see if there are any bp plugins that get into that..

    of course bp is free to play with so it wouldn’t hurt to put it on a new site and experiment – but I would bet the amount of time you spend trying to make it do what you want it do is not trivial.

    others may have different thoughts on all that.. I’ve just a user not a bp dev.

    #264082
    coolhunt
    Participant

    I found this handy

    It works in BP-custom.php — im trying to get it to load instead of “alphabetical”

    // Exit if accessed directly
    if ( !defined( 'ABSPATH' ) ) exit;
     
    class BP_Loop_Filters {
     
        /**
         * Constructor
         */
        public function __construct() {
            $this->setup_actions();
        }
     
        /**
         * Actions
         *
         * @uses bp_is_active()
         * @uses is_multisite()
         */
        private function setup_actions() {
            /**
             * Adds the random order to the select boxes of the Members, Groups and Blogs directory pages
             */
            // Members component is core, so it will be available
            add_action( 'bp_members_directory_order_options', array( $this, 'random_order' ) );
     
            // You need to check Groups component is available
            if( bp_is_active( 'groups' ) )
                add_action( 'bp_groups_directory_order_options',  array( $this, 'random_order' ) );
     
            // You need to check WordPress config and that Blogs Component is available
            if( is_multisite() && bp_is_active( 'blogs' ) )
                add_action( 'bp_blogs_directory_order_options',   array( $this, 'random_order' ) );
        }
     
        /**
         * Displays a new option in the Members/Groups & Blogs directories
         *
         * <a class="bp-suggestions-mention" href="https://buddypress.org/members/return/" rel="nofollow">@return</a> string html output
         */
        public function random_order() {
            ?>
            <option value="random"><?php _e( 'Random', 'buddypress' ); ?></option>
            <?php
        }
     
    }
     
    // 1, 2, 3 go !
    function bp_loop_filters() {
        return new BP_Loop_Filters();
    }
     
    add_action( 'bp_include', 'bp_loop_filters' );
    
    #263743
    shanebp
    Moderator

    Have you tried one of the privacy plugins?
    For example: https://wordpress.org/plugins/bp-simple-private/

    #263534
    djsteveb
    Participant

    with my default bp installs just about everything IS public.. it’s actually not easy to make the bp pages like activity and groups and such private.

    I think most of those things are fine to be public – and people can choose to make groups members only, logged in only, or public viewable.. default is all public I think..

    Most profile fields the user can choose similar privacy settings for certain fields if you allow..

    Sometimes I make a group non-pulbic viewable as super admin..

    I also choose a lot of things to be blocked by the robot search engine spiders – as there is no need for them to go pulling 100 pages of activity feed and such – so even though most of my BP site is publicly viewable, only about half of it is (supposed to be) crawled by the big engines – most follow the robots.txt directive – but not all..

    #263218
    danbp
    Participant

    @deunit,

    it’s not an issue but eventually an enhancement.
    As nothing new appeared in the plugin sphere, and if you don’t know further, follow Shane’s recommendation.

    To monetize your BP, perhaps you can consider MyCred ?

    Closing this tread now.

    #263172
    finzend
    Participant

    @pixelpushermama @julia_B did you fix this, or is it still a problem?

    I just upgraded from BuddyPress 2.3.4 to 2.7.4 (WP 4.7.1) but now we seem to have a problem with the mentions. Users used to get an notification-email when they were mentioned in the comments on one of our sites. That doesnt happen anymore. But the emails from private messages or replies on activity-updates do work…

    #263088
    mrjarbenne
    Participant

    In case anyone runs into this forum topic looking for a similar fix. I needed to do two more things to get this perfect (thanks @danbp for the great start).

    Under each field, the default privacy is displayed, so you need to make sure that for every option you add, the default is either “All Members”, or “Only Me” so that “Everyone” doesn’t appear as a default under each field, despite the fact that you’ve hidden the option to chose it once the user hits the Change button.

    Additionally, under the name field, “Everyone” is the default, and it can’t be changed. This isn’t really accurate if you site is private, so I have hidden the line that says that the Name field is visible by Everyone with an additional CSS snippet.

    /* Remove Everyone option from Profile Fields to ease confusion on a private site */
    
    li.public {display:none!important;}
    
    #buddypress div#item-body div.profile form#profile-edit-form.standard-form.member-information div.editfield.field_1.field_name.required-field.visibility-public.field_type_textbox div#field-visibility-settings-toggle-1.field-visibility-settings-notoggle {display:none!important;}
    #263078

    In reply to: Spam via messages.

    djsteveb
    Participant

    something like the https://buddydev.com/plugins/bp-private-message-rate-limiter/ may be helpful if you really want to stop 99.9% of it.. that one is premium / costs $19.. but it’s more of a hindrance to the spammers than just the spamshield.. which I use and think it stops 90% of them.. so is the other 9.9% worth the premium.. situations vary..

    Christian
    Participant

    Does anybody use bbpress in private bp-groups with this phenomenom?

    Thanks for your reactions.

    #262639
    djsteveb
    Participant

    disclaimer, I am not a bp dev, just a long time user, and my knowledge is far from complete.

    1 -each Profile / Member offered a separate gallery or media library?
    This was a problem from the very beginning, and perhaps the biggest problem for bp aside from lousy filter options for the activity stream. Initially it was handled by the ‘bp-album’ plugin – which was later abandoned amidst some drama – rtmedia is kind of the standard for handling this now – but it’s bloated, important functions have gotten expensive, and it’s not well supported in core or themes – it’s terrible at keeping things separated like comments on media and galleries –
    There is a new bp media like experimental thing that looks promising, and some attempts at making placeholders for bp media have been made in the past year, new hooks for bp attachment, etc. Some code has appeared on github showing a great start at possible core bp media handling – but not enough devs on that.

    if you must have media with bp I suggest getting the premium “press permit core” and ask for support in limiting what other users can see in the media library. God forbid you have a problem with users trolling other users – and you have media – as you can purchase the buddyblock plugin which will prevent most abuse user to user, but it does not hook into the separate commenting system that rt-media creates. I strongly encourage you to try the other media plugin and hope that works for what you need before getting stuck with rtmedia and no way to export it’s data to something else.

    2 a cap on how many Mb’s a user is allowed to upload for the total amount of media space
    Wordpress has a setting for this when using multi-site setup – but I think it affects only what gets posted to the user blogs aka sites. I think rtmedia has an optional purchase-able plugin for this if you use their system to allow for the media uploads – not sure if the other competing system has such functionality.

    This is a problem, and a solution should include a way for admins to look at users who have uploaded media, not just by user and space taken up, but also by date. There should be more control for deleting content with various parameters as well. I pity you if you find one day a user has uploaded 100s of photos that violate… terms.. and you have to delete each one at a time. If you find a way to handle this better with rtmedia I’d love for you to share it.

    Currently I have tons of photos and videos that users have uploaded and no good way to look at or remove, aside from going profile to profile and manually checking what shows up there. A better way may exist, I have not found it yet.

    3 – Why do all members have to be Authors in order to be able to Post because this was the only method that worked for me.
    When you say post, that sounds like posting a post to a blog – either their own multi-site blog, or perhaps to a group blog. This is how worpdress is and is great for controlling things with blogs. If you mean a user needs to be an author in order to add to thier “activity stream” aka wall or profile or whatever, I do not think they need to be a blog author in order to do so… “What’s new” activity posts work fine without being a blog author.

    4 – BuddyPress and BB Press how should I set up my .htaccess file – this should be documented somewhere around here. Wish I could tell you, I don’t have any bb press running with any buddypress installs any longer.

    If you don’t want robots to crawl your site, search for forums for making buddypress private – you’ll want to lock down your site with a password required to view anything – if you really want to block bots.. if it’s just the nicer bots you are referring to, like googlebot, yahoo and bigbots – then you can setup a robots.txt with something like

    robots *
    disallow /
    allow index.php

    but I don’t think having the main engines index your index.php is really helpful with most WP themes.. you’d probably be better with “allow /about-us/” for example.. as most wp sites I’ve worked with dont have a good ol’ index.html

    your experiences may vary..

    With BP you eaither have lots of time to code, or you take everything as is for the most part. Auttomatic has not funded bp well since the first dev Andy left – it’s basically abandoned like unwanted bastard child that gets (almost) no support – and has been for years. Instead depending mainly on volunteer contributors that obviously have to do other things like earn a living and pay bills.

    Some great people do amazing things making bp better – I appreciate those that are making the documentation better and fighting the good fight of dealing with all the wp core changes and how they affect bp when it updates – and other work to make it better. However what is seemingly most important to many webmasters and end users may not be on the roadmap for future releases – and finding developers to mod up BP is not as easy as one may hope either.

    custom fixes today may well be broken with future updates, and no one has thought about the laws in Europe for privacy and users being able to export data you have them.. all kinds of things..

    consider bp a huge mix of free code that is very experimental, and in my humble opinion should be removed from the wp plugin repo if automattic is not going to fund it properly – it certainly should not be on the first page view of plugins – anyone installing it likely has no idea what can of worms they are getting into.

    If you are thinking of the future and how you may need to moderate user’s uploads and such, I strongly encourage you to test out the mediapress alternative – but realize in order to get core functionality with bp right now you will have to add on a walled garden from one place or another.. without any import / export options – before you invest too much of your time and your user’s pictures and videos into silos you may never escape, you right as well look into and test out peepso (https://www.peepso.com )- as they seem to have more skin in the game and have made at least some import / export things if I remember correctly.

    again, I am not a bp dev. also I have not used mediapress yet – although I would with a fresh install – rtmedia has not met my expectations, although not a total fail, it is only 60% of what it should be. I have not used peepso yet either. Just a guy that’s been running a few bp installs for a few years, and my knowledge is fuzzy at best. surely @ma.tt, others thoughts, and your mileage may vary.

    #262594
    shanebp
    Moderator
    #262205
    metalhead
    Participant

    Yes, my BP brothers, there’s a plugin called BP Simple Private and I think it will solve your problems, without having to work with robots.txt

    Prior to using BP Simple Private, my site’s member pages were way too accessible.. You could type http://mysite.com/members <- and you’d see the whole members directory.

    Prior to using BP Simple Private, you could type http://mysite.com/members/aaronthomas1979, and you’d jump straight to my profile.

    With this plugin, people (or search engine bots,) will be redirected to a page of your choosing, and the member pages will not be displayed.

    If you already have the issue of member pages being displayed in search results, there’s nothing you can do to immediately fix that, but make the change (get the plugin) and wait for those bots to crawl your site again, but next time, they won’t find those pages.

    It works for me..

    #262188
    rageshr007
    Participant

    Thanks Venutius…I was breaking my head for few days … looking all over for a solution.!!!…But your ticket is to hide the forum…I don’t want to hide…forum title has to be visible in index page ..Once a non-member user try to join the forum it should show a message as “you need to be member of the group…”

    I was referring this

    https://buddypress.org/support/topic/how-to-make-a-private-community/

    Have to try if it help as a work around on my requirements..?

    #262152
    dev grl
    Participant

    Wouldn’t checking this feature called user groups maybe achieve what I need? But it would still be up to the user to join this group? The definition is allow your users to organize themselves into specific public, private or hidden sections with separate activity streams and member listings.

    #262013
    heytricia
    Participant

    I asked a bit too soon… A little more searching and I found your explanation here. Setting the default component seems to have done the trick. Thanks for the code samples!

    #261933
    melodies
    Participant

    Hi @danbp,

    This is the situation:

    I’m not asking you to act privately. I’m simply trying to give you a password to be able to log in because, if not, you will need to pay a membership fee to log in.

    #261931
    danbp
    Participant

    Sorry, i don’t act privately on user’s site.

    If you’re unable to solve your issue, hire somebody who can help you on BP Job Board.

    #261907
    Fencer04
    Participant

    So I’m using the ‘messages_message_before_save’ action to block a user from sending private messages to certain members. This function isn’t being called if the sender has already started a conversation with the user that is blocking them.

    Is there another hook that should be used?

Viewing 25 results - 601 through 625 (of 3,490 total)
Skip to toolbar