Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,251 through 2,275 (of 3,456 total)
  • Author
    Search Results
  • #115662

    In reply to: HELP WITH HEADER

    Hugo Ashmore
    Participant

    @megt12 on a public help forum it’s bad form to expect or try and move a topic away to private messaging, help given is always thought to perhaps be useful to others stumbling across the thread in searches.

    Defines go in your wp-config.php file.

    You will definitely be needing to explain the steps you have taken thus far and the point you are at if it’s going to be possible to provide meaningful help.

    Bristol CI
    Participant

    Great, that plugin is perfect thank you!
    All I need to work out now is how to change what template the buddypress pages (groups, forum, etc) use – any ideas?
    Saskia

    I use S2member plugin. It will handle what you are asking for. Plus a whole lot more. Be sure to read all the documentation.

    #115559
    Hugo Ashmore
    Participant

    Closing thread then.

    #115549
    pcwriter
    Participant
    pcwriter
    Participant

    @WCCP

    The s2member plugin will do everything you want, and a whole LOT more too! Watch out though, you can easily get lost in all the features and options, so take it slow and follow the startup instructions closely. But everything is very well documented, and there’s a pretty good help forum available if you get stuck.
    https://wordpress.org/extend/plugins/s2member/

    There is also a new bridge plugin for s2member (or any other membership plugin) that enables you and your users to create private profiles that become visible to certain membership levels. It automatically inserts an “Upgrade” link in member profiles that displays to users who don’t yet have view permissions.
    https://wordpress.org/extend/plugins/buddypress-profiles-manager/

    #115530
    NoahY
    Member

    I also use BWP-recaptcha for my other blogs on the network, so I can access the pub and priv keys from there, like so:

    global $bwp_capt;
    $publickey = $bwp_capt->options;

    and

    global $bwp_capt;
    $private_key = $bwp_capt->options;

    That way the keys are kept in one place.

    aces
    Participant

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-make-a-private-community?topic_page=6&num=15#post-86316

    Derived from the above link, I use the following in a bp-custom.php file to exclude users that are not logged in from seeing the activity or members areas.

    function sh_walled_garden()
    {
    global $bp;

    if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )
    return;

    if( ! bp_is_blog_page() && ! is_user_logged_in() )
    bp_core_redirect( $bp->root_domain .'/'. BP_REGISTER_SLUG );
    }
    add_action( 'get_header', 'sh_walled_garden' );

    In bp-custom.php the above needs to be placed in a plain text file with “ at the end of the file….

    #115341

    pls anyone??

    #115331

    In reply to: restrict profile views

    Hugo Ashmore
    Participant

    Firstly searching the site will possibly throw up past threads on the subject, try: ‘private profile’

    Or you could check how certain aspects of bp work that only kick in when the user has logged in ( look in sidebar.php for examples of logic that checks if a user is logged in) using that logic you could take the main home page for members profiles and wrap it a conditional query that says ‘show: member profile if user is logged in else: write a polite message explaining profiles are restricted to members and provide a link to registration page.

    #115324
    a_johnson
    Member

    Update: I installed the “BuddyPress Private Messages for Friends Only” plugin by r-a-y. It throws an error when the Admin account sends a PM “You are not friends with the person(s) you are attempting to send a message to. Your message has not been sent.” but the two accounts are friends. The user can send a PM to the admin successfully and the admin can reply successfully to that PM only.

    HTH.

    #115248
    r-a-y
    Keymaster

    Sounds like you’re using a caching plugin like W3 Total Cache.
    If you have it enabled, disable it.

    Right now, there are a few issues with using object caching plugins.

    Stay tuned to the following ticket for updates:
    https://buddypress.trac.wordpress.org/ticket/2636

    #115198

    In reply to: too many redirects

    @mercime
    Participant
    #115038
    Stigmartyr
    Member

    Update: I read the bp-core.php file and created a file called bp-custom.php and put this in my /plugins folder as instructed with the username_compatibility code as instructed above and it’s still not working for me. That doesn’t seem to have done anything and neither is editing the wp-config.php.

    I’ve made 4 test users and autofill doesn’t find anything.

    #114981
    r-a-y
    Keymaster

    It’s possible, but the plugin would have to create its own tables to store the data. The Group Documents plugin that Dennis mentioned does something similar codewise and can be used as a jumping off point.

    It would be better if BP had a dedicated meta table for PMs like the activity component. Then you could easily add this time of information without creating a separate table. I created a ticket here about this:
    https://buddypress.trac.wordpress.org/ticket/3083

    #114975
    Stigmartyr
    Member

    Hello all – I ran into this issue as well, and tried using the code fix in my wp-config.php file but it’s not working. Also I cannot find bp-custom.php anywhere in /plugins/buddypress – was it moved or renamed? Do I still need to add it there?

    However, even with the wp-config.php custom setting in place I cannot even auto-fill messages to test users without dots in their names. Oddly it will autofill the admin’s nickname but that’s it..

    #114970
    Stigmartyr
    Member

    Ditto :)

    #114699
    carstiee09
    Participant

    Hello iwazaru,

    you have to past the code in the: bp-messages-cssjs.php

    try this code:

    <?php

    function messages_add_autocomplete_js() {
    global $bp;

    // Include the autocomplete JS for composing a message.
    if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
    add_action( ‘wp_head’, ‘messages_autocomplete_init_jsblock’ );

    wp_enqueue_script( ‘bp-jquery-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocomplete.js’, array( ‘jquery’ ) );
    wp_enqueue_script( ‘bp-jquery-autocomplete-fb’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.autocompletefb.js’ );
    wp_enqueue_script( ‘bp-jquery-bgiframe’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.bgiframe.min.js’ );
    wp_enqueue_script( ‘bp-jquery-dimensions’, BP_PLUGIN_URL . ‘/bp-messages/js/autocomplete/jquery.dimensions.js’ );
    }

    }
    add_action( ‘wp’, ‘messages_add_autocomplete_js’, 2 );

    function messages_add_autocomplete_css() {
    global $bp;

    if ( $bp->current_component == $bp->messages->slug && ‘compose’ == $bp->current_action ) {
    wp_enqueue_style( ‘bp-messages-autocomplete’, BP_PLUGIN_URL . ‘/bp-messages/css/autocomplete/jquery.autocompletefb.css’ );
    wp_print_styles();
    }
    }
    add_action( ‘wp_head’, ‘messages_add_autocomplete_css’ );

    function messages_autocomplete_init_jsblock() {
    global $bp;
    ?>

    jQuery(document).ready(function() {
    var acfb =
    jQuery(“ul.first”).autoCompletefb({urlLookup:’root_domain . ‘/wp-load.php’ ?>’});

    jQuery(‘#send_message_form’).submit( function() {
    var users = document.getElementById(‘send-to-usernames’).className;
    document.getElementById(‘send-to-usernames’).value = String(users);
    });
    });

    <?php
    }

    i you have installed buddypress via a subdomain.

    Carsten

    #114635
    carstiee09
    Participant

    i have the same problem…

    #114531
    LPH2005
    Participant

    You might start out small. Install BuddyPress and enable just the activity stream; disable everything else. Make sure that the theme css works well with the activity stream. You’ll need to install the BuddyPress template pack. After you are satisfied with the activity stream then change WP install to multi-site. You’ll want to lock it down so that you control creation of blogs – so that you don’t have to deal with splogs. Once you have that working then you can add a few other BP features – private messaging, etc.

    #114493
    Reboot
    Member

    I have been looking for PM attachments as well! Would love to have that feature.

    #114488
    jonhorner
    Member

    Thanks for the reply. Been looking at some group docs extensions. I would also need one to allow users to upload and share documents with each other outside of groups. Will have a go at developing one but don’t want to repeat work if it’s already been done.

    #114452
    dennissmolek
    Participant

    There isnt a plugin I know about, but there are a few for group docs and things like that..

    #114255
    stwc
    Participant

    BP is CPU and memory-hungry on top of regular WP requirements. Depending on what web host you’re using, if you’re on a shared hosting plan, it may just be dieing due to hard limits on resources. I ran a small BP install (along with other sites) on a Dreamhost shared account for while, but have since moved to a virtual private server, because, well: it’s heavy.

    That may or may not be the problem.

    #114228

    In reply to: Group Feed Activity

    Scotty501
    Member

    OK I had aply but still need some help please. What I have done followed a hack from another thread by @r-a-y to move the activity thread along the tabs and make the forum one home – so at least when people look at the group it does not confuse them. This along with making the thread private means that the Main Activity thread does not get cluttered with group posts. Not ideal – but will have to do.

    This though causes another issue – if you click Group Directory – you get no topics found – further confusion to the users. If I turn off Group Directory in the settings, the button still remains – but if you click the button it goes to the site home page – more confusion to users.

    Can anyone help me my problem another way?

    Seems Groups are not very well thought through :(

Viewing 25 results - 2,251 through 2,275 (of 3,456 total)
Skip to toolbar