Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 1,351 through 1,375 (of 3,869 total)
  • Author
    Search Results
  • #236267
    5high
    Participant

    Hi there,

    currently running a new WP install with BP, rtmedia, s2member, bullet proof security and Kleo theme.

    What I’d like to do is just like many others – only allow BP messaging between admin and users – so not user to user.

    I found a possible solution to this in a previous thread here ( https://buddypress.org/support/topic/is-it-possible-only-user-admin-user-private-messages/ ), but needed some more details of the code mentioned. As it’s now closed I had to open a new thread…


    @djpaul
    mentioned you’d solved it using s2member plugin – can you share how you did this here? Or any extra code and where you put it?

    or if there’s a Bddypress way to do this I’d be keen to know too!

    Many thanks BP forum users 🙂

    #236185
    angslycke
    Participant

    @danbp True indeed, but with my previous setup with BuddyPress 1.9.2 I was able to control the spam registrations since they were never activated (I used BuddyPress Pending Activations to manually activate new users) and therefore they could never log in. They were not seen in the activity stream either.

    This is my setup: https://buddypress.org/support/topic/create-private-membership-site-with-buddypress/

    I’ve now upgraded s2Member which had no effect, and also deactivated the BuddyPress Automatic Friends plugin which didn’t have any effect either. The new user shows up as pending in the Users screen for about 1 minute after registration, but is then automatically activated.

    #236182
    angslycke
    Participant

    Hi!

    I recently upgraded my site with a new theme (BuddyBoss Boss. theme) and am running WP 4.1.1 and upgraded from BuddyPress 1.9.2 to 2.2.1.

    I have a setup where I redirect the activation e-mail to the site admin to be able to manually control new members and verify their information before activating them and letting them log in. This is a cruical function for my site since it’s a private network.

    After the upgrade I noticed that some spam users were automatically activated and able to log in without my manual activation. The users are automatically activated, the same issue as @RussAdams is experiencing. I’ve tried deactivating a few plugins (BuddyPress Pending Activations, BuddyPress Auto Group Join) but this issue persists. In BuddyPress 1.9.2, everything was working as expected.

    Browser sessions doesn’t seem to be the issue since clearly people on other computers have been able to create accounts which were automatically activated as well.

    This is a very serious issue for my site since I no longer have the control over new users and spam users can log in after activating. Did you get this sorted out?

    #236147
    RomanSB
    Participant

    @saish_neugi the Plugin Private Buddypress works well also. It isn’t being updated anymore, but I’ve tested it and still works without errors.

    Clive Hetherington
    Participant

    Hi Rosy, it’s a private invite site discussing aspects of the make up of reality although I’ve some public sites which don’t attract the same comment enthusiasm because it’s a very specialist area. Discussions of earth as a simulation: public discussions are here: http://www.soul-healer.com/simulation-argument/

    It works the same way for me – you only get about 4 lines of the comment in the AS. I think only for Activity Updates there is a ‘More’ link. So, basically with BP you cannot read all of the comment in the AS AND you cannot actually easily find the comment on the original pages either. With a tabbed side bar setup you can list most recent comments and clicking on those will take you to your page comment BUT it’s only feasible to list the last 30 comments or so in the sidebar.

    Yea, I’ve managed to avoid FB and the Twitter things. Those are not for ‘focused, inquiring’ decent ‘comprehensive’ discussions.

    Basically, if you are suspicious then you’d notice that ‘reality’ doesn’t like focused ‘serious’ discussions it’s likes twittering and in the moment passing remarks – it’s helps greatly to stop people figuring out fundamentals about reality . . . haha

    #235952
    Security
    Participant

    try checking using an incognito or private window after adding the above line your site and browser may be loading a cached version of your site due to which you won be able to see the changes
    Thanks

    #235875
    rosyteddy
    Participant
    rosyteddy
    Participant

    http://seventhqueen.com/support/forums/forum/kleo/kleo-general-questions

    Hi @sjjenkins

    This should not be very difficult. Some small change in the template file but since they have no downloadable version its difficult to say.
    This may contain some clue –

    Showing some profile fields in member’s profile header not working after update


    Just curious, how does the Whats New box looks like when you use
    buddypress-activity-privacy, buddypress-activity-plus and any Media plugin like rtmedia ?
    Whats your site (if its not private) url ?

    Thanks.

    #235620
    Henry Wright
    Moderator

    Hi @pieter

    Try this

    function filter_private_message_email_body( $email_content, $sender_name, $subject, $content, $message_link, $settings_link, $ud ) {
    
        $content = substr( $content , 0, 140 );
    
        $email_content = sprintf( __(
    '%1$s sent you a new message:
    Subject: %2$s
    "%3$s"
    To view and read your messages please log in and visit: %4$s
    ---------------------
    ', 'buddypress' ), $sender_name, $subject, $content, $message_link );
    
        return $email_content;
    }
    add_filter( 'messages_notification_new_message_message', 'filter_private_message_email_body', 10, 7 );

    This will make the message 140 characters. Feel free to change the 140 to another number.

    danbp
    Participant

    hi @rosyteddy,
    guess the mytery sit here: http://localhost/wordpress/userA/

    Multisite (subdomain or subdirectory) need that wordpress stays at the site root. At least for a default install.

    SSite: hxxp://my_site.com
    MS: hxxp//my_site.com

    MS subdomain: hxxp//wouah.my_site.com
    MS subdirectory: hxxp//my_site.com/wouah/

    A local install (wamp, mamp or xamp) is mostly in a ‘www’ folder at your hard disk root C://
    (recommended path) Refer to your software documentation for more details about installing Wamp/Mamp/Xamp – at least about localhost in URL. In the latest version (wamp 2.5), this is no more used. In my case, the local URL is http://my_site/wp-admin/….

    C://www represent the private part of the site path. The equivalent of /var/your_account/htdocs/ on a production server.

    The same path scenario goes localy
    C://www/my_site (avoid confusion and don’t use WordPress as site name)
    My_site folder contains all WP directories and files:

    My_site/wp-admin
    My_site/wp-content
    My-site/wp-include
    My_site/wp-config.php and so on…

    At the end of the install, you got a htaccess file containing:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    The important things here are rewrite engine on and rewrite base /, where the slash means “start to manage site URL’s form this point”, which is /…/…/var/your_account/htdocs/<- from here !!!

    Before installing BuddyPress, activate pretty permalinks to what you want, EXCEPT default. Save. I do this before, because WP likes also pretty permalinks, and so i don’t forget to do it after i finished with a BP install.

    Install BP and setup (or at least control if they exist) the choosen component page(s).

    If you do this, you won’t have 404 or other issues, no matter if you use MS or subdirectories or subdomain. WP alone will work, and BP too.

    The most important advice if you want to work localy, is to setup correctly apache (mod_rewrite is not activated for ex.). And if you use it with windows, to double-check anything, including HOST file where you have to declare manually each of your local sites (since wamp 2.4 – don’t remember exactly)

    # localhost name resolution is handled within DNS itself.
    127.0.0.1       localhost
    ::1             localhost
    
    127.0.0.1       my_site
    ::1             my_site
    
    127.0.0.1       my_other_site
    ::1             my_other_site
    #235598
    KS
    Participant

    Thanks Dan.

    I did search across every file (using Brackets), so I found the .js and .php files where it’s used, but those classes were not found in any CSS file in my installation. Sorry, ‘looking’ was probably misleading. I meant I had searched thoroughly, using any one of a number of appropriate tools 🙂

    I did find *some* of the attributes of the button, but not, for example, where the ‘Add friend’ button is getting its colour from, which is different to the ‘Send private message’ button for example. Some CSS has to be differentiating those two buttons, surely? And the colour in mine doesn’t appear anywhere in any CSS except for a class that isn’t applied to these buttons at all.

    #235488
    whoaloic
    Participant

    Thank you Henry for your answers.

    Note is what I call “What’s new” message in Activity Stream.
    That’s why you called public message or mentions?
    It’s like a tweet finally ?

    For private messages, I notice that user could send a message to all users so I was wondering what’s the point of Friends connexion.
    I was thinking that only users who are friends could send messages.

    Than you for the “favorite” button trac. It looks encouraging.

    danbp
    Participant

    Hi,

    leave groups & request membership use the same button, depending the context. See reference.

    Try this if you use only private groups

    function xyz() {
    global $groups_template;
       if ( bp_is_active(group) )
          return '';
    }
    add_filter( 'bp_get_group_join_button', 'xyz' );

    Reference: wp-content\plugins\buddypress\bp-groups\bp-groups-template.php:2747

    #235453
    Henry Wright
    Moderator

    Hi @whoaloic

    What do you mean by “note”?

    Messages can be either public or private. Private messages work kind of like chat, and can be seen only by the ‘thread’ participants. Public message are ‘front-end’. You can public message someone by prefixing their username with the @ symbol. Public messages are also known as mentions.

    Regarding favourites, see this Trac ticket for how the feature will be improved over the next few versions.

    Hope this information helps.

    whoaloic
    Participant

    Hello,
    I would like the users not be able to leave groups or request membership buttons.
    I have set groups to private.

    Cheers

    #235312
    Jozef de Beer
    Participant

    I am having the same issue. The regular WordPress search box will not display any content from my Groups page. I think it is hilarious that when I go to create a group, under settings the public and private options say that group content will show up in search results. I have tried relevanssi and that didn’t help.

    #235154
    Reginald
    Participant

    Yes for now what I have Managed to do is to open a private browser and log in to my account from there and create a group that way it will allow me to create new Groups, but I just can’t create them regularly, and it will not let me go pass the Settings Screen, but when I go to check my Groups the New one is Added.

    rosyteddy
    Participant

    Imho, it is a debatable issue. Is the software/program designed such as to allow the admin to read PM only if there is a complaint ? Is it explicit in the terms and conditions that admin can read PM in which case some users may not like to register?

    An user should have initial ways of blocking another harassing users like ello.co does rather than admin jumping into read PMs. In some countries it may be illegal or serious breach of privacy issues. Then there are much “grey” areas as to what is “drama” or what is a “legit” complaint.

    Also see this and this.

    bp-help
    Participant

    @vitamincee
    As @henrywright mentioned that is by design. Otherwise how would you be able to solve issues between users as an admin if one of your users complains that another user is sending harassing private messages. If you was locked out of viewing the private messages as an admin then you really couldn’t determine if its a legit complaint or someone just causing drama.

    Henry Wright
    Moderator

    Hi @vitamincee

    As an admin, you have access to your member’s private messages. That’s by design. Why would you want to restrict access to anything for an admin account?

    #234978

    In reply to: mentions not working

    bp-help
    Participant

    @aymanomar85
    @mentions works for me using the latest WP/BP, twenty-fifteen theme, Private Community For BP plugin, and BuddyPress Identicons plugin. Very basic setup for myself so you will need to provide more info on your setup so others can help. 🙂

    #234952
    peter-hamilton
    Participant

    I seem to believe that groups are only usable by its members and therefor also any group forum.

    Public only means that the group will be listed and viewed by the public, only mebers of those groups can actually post on their forums.

    Better make a regular forum with that name where all can post, and have a sticky post for people to join the actual group to start topics in their “private but publi” forum.

    At least that is what I think, but I might be wrong.

    Garrett Hyder
    Participant

    Hello,

    I’ve found recently that using the bbpress shortcode for embedding a single forum ([bbp-single-forum id=$forum_id]) works find if you have a Group with a Public Forum.
    However if you have the Forum set to Hidden the shortcode simply doesn’t render anything.
    And if you have the Forum set to Private the shortcode renders but the Topics list doesn’t get added instead it displays the no topics message but you can clearly see above in the activity notice that there’s been several topics created.

    To work around this limitation I’ve simply made all the forums public, placed into a Forum Group that’s hidden. And made their Groups Private so that the forums are still hidden from the world and only accessible through the group and the page I’ve embedded on it.

    Wanted to raise to see if there was a better approach or if this was an issue with the BBPress and Buddypress integration.

    Thank you

    #234775
    Henry Wright
    Moderator

    Hi @matthias70

    Private messages can be sent to multiple recipients. The field you mention is for entering more usernames to send the message to.

    #234554
    danbp
    Participant

    hi @abhimanyubind,

    i’m not developer, but i think th e answer is yes.

    For example, to allow admin to receive a copy of messages sent by users

    function arc_wp_mail_filter( $args ) {
    	
            $args['headers'] = 'Bcc: <admin@yoursite.com>'; 
    
    	$new_wp_mail = array(
    		'to'          => $args['to'],
    		'subject'     => $args['subject'],
    		'message'     => $args['message'],
    		'headers'     => $args['headers'],
    		'attachments' => $args['attachments']
    	);
    	
    	return $new_wp_mail;
    }
    add_filter( 'wp_mail', 'arc_wp_mail_filter' );

    Here an old topic with a similar question and answered by our core ninja’s.

    Hope this will help you !

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