Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 851 through 875 (of 3,458 total)
  • Author
    Search Results
  • #243487
    Kookidooki
    Participant

    as far as using skype for your site, I think that is a short sighted choice – no privacy, no control, dependent upon third parties… I went down that road once, and not getting into that dependency again.

    I’m running a business website where face-2-face conversation is important. Skype works fine for me and about the privacy: you decide (and no one else) who you want to join your private or group conversation. There’s no other party involved when using Skype.

    danbp
    Participant

    BuddyPress use bbPress when you allow group forums.
    If the group is private, the attached forum is also hidden ton non members of that group. Same for public or private groups.

    You don’t have to change the group forum setting in the forum list.
    The right steps
    Create a group A
    A is set to private
    Allow a forum for A
    —— The wrong step ——–
    Going to dashboard forum admin, and set forum A to private. If you do this nobody will see it except site admin.

    Groups


    https://buddypress.org/support/topic/hide-buddypress-and-bbpress-items-from-guests/
    https://buddypress.org/support/topic/buddypress-private-group-is-not-visible-in-bbpress/

    Henry Wright
    Moderator

    I’m not sure but perhaps it’s related to the private messaging component? I know those URLs look like /members/username/messages/etc..

    #243306
    Henry Wright
    Moderator

    @danbp I needed your answer 1 year 6 months ago 🙂

    #243297
    RecAgenda
    Participant

    So then, if I can get some clarification, what’s it talking about on this page with:

    per_page optional
    The number of messages to display on a page before they are paginated to the next page.

    • Default value: 10

    If that’s as obvious as I think it is, then where I can find that in my files?

    #243282
    danbp
    Participant

    Hi @recagenda,

    you can’t enable this, because it doesn’t exist. I could be wrong, but so far i know, private conversation are not paginable.

    Reference file is bp-templates\bp-legacy\buddypress\members\single\messages\single.php

    https://buddypress.org/support/topic/pagination-private-message-thread/ @henrywright

    #243280

    In reply to: Sitewide Notice

    mgfarnum
    Participant

    Thank you for your response. I am logged in as an admin but i do not see those options. May I privately send you a support admin account credentials and ask if you can review my implementation. I am using the latest Word Press 4.2.4, I also have MemberPress installed and although I’ve been told repeatedly that they are compatible…

    Please let me know. Thank you

    #243090
    Jenny
    Participant

    Hi there,
    Unfortunately the website I used wp album plus on, is my client’s private social networking website,by invitation only, so I can’t share his website link here.

    However I assure you that it does indeed work properly with Buddypress. If you see this support thread below, I added a tinypic link in one of the posts there, which shows a screenshot of how albums look on the front end, using buddypress and wp photo album plus plugin. If you use the echo code in this support thread, then it will work with Buddypress, no problem.

    https://wordpress.org/support/topic/option-to-upload-create-edit-or-delete-albums-not-showing-on-frontend?replies=3

    #243061
    danbp
    Participant

    To create a shortcode, you use the same function as in the mentionned topic and instead echoing, you return what you need. Like this:

    function bpfr_message_shortcode() {	
    $author = get_the_author();
    $message = 'Login to send a message to this author !';
    
    if( is_user_logged_in() ) {
    	return '<a href=" '.wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . $author ) .' title="Private Message to Author" ">Contact the author</a>';
     } else {
        return $message;
     }
    } 
    add_shortcode( 'ksam', 'bpfr_message_shortcode' );

    Add this to bp-custom.php or your child-theme functions.php.

    Use the shortcode [ksam] at the place you want and you’ll see a Contact the author link.

    Note that I tested it only within a post, meaning you need to be in a post loop to fetch an author.

    #242669
    djsteveb
    Participant

    @jordanboon0 – certainly there is more than one way to accomplish what you are proposing here.

    My first thought upon reading this is is that you can create a “multi-user blog” with wordpress. Each new artist becomes a “contributor” or even “editor” upon sign up, and they can post a new gallery easily, then your admin(s) can choose what new galleries get published.

    You go do all that with a single blog / wordpress install – and do it without buddypress, just make a cool custom author page for whichever theme you want to use.

    There are many plugins and settings for things like front end uploads, post author profiles, wordpress gallery fancy stuff and all that.

    You could also put buddypress into this mix and give your artists some extra social network stuff like private messages, groups and all that – however if you go with buddypress and and that layer to handle everything (without getting your users to submit posts / pages via standard wordpress) – then you have to get into a media plugin like rtmedia, mediapress, or – another one posted about a month ago.. anyhow – those media plugins are kind of their own “silos” – customizing how they work is not a few wp repo plugins away – and support for what you may want to do with them may be disappointing.

    Of course you could take WP, add in BP if you really want the social layer, and still use the main site blog as kind of a “multi-user (or “group” blog) and do it that way.. you could get more complex and turn it into a multi-site install where each user get’s their own unique blog with gallery plugins – but moderation of posts and such with that setup may become more of a challenge – along with the extra headaches with running a multi blog network.

    Anyhow – given the details you provided with your stated goals, I would forget about buddypress and multi-site – just install wordpress and do some searches in the wp-repo and themes section for “author pages”, “group blog” “post moderation” “front end uploads” and the various “Gallery” plugins – I think you can accomplish what you are going for pretty easily with lots of customization options.. without all the drawbacks and limitations of BP.

    #242220
    djsteveb
    Participant

    note sure if these work or not – never used them:
    https://wordpress.org/plugins/wp-invites/

    https://wordpress.org/plugins/buddypress-private-community/

    Let me know if you try them and they fail or work!

    #242218
    djsteveb
    Participant

    @mattfl850 – this info will help with that journey:
    bottom of the page: https://codex.buddypress.org/getting-started/installation-in-wordpress-multisite/

    I am sure this is possible, it’s not the way I would do it… might also want to consider some of the info here: http://halfelf.org/2011/dont-use-wordpress-multisite/ (updated may 2015 😉

    Others may agree or disagree, and you may be keeping your server tuned like a well oiled machine – hidden from the SE spiders and brute force attackers and all that.

    Of course I am not an expert, or a bp dev or anything – just another user who has tried a few different setups and spent many hours trying to do what it “possible” and should be “simple” – and pulled my hair out trying to make things like that work well :))

    Not sure if anything is changed in recent updates, but I will mention that when I did this kind of conversion; I had to install the role scoper plugin (now called press permit) – in order to hide people’s private pics they uploaded – as they were visible in the media gallery for other bp users on my sites who had signed up for a “blog” (not called “site” in multi-site) – that was a painful thing to find out the hard way – maybe things have changed with that and other issues – not sure.

    Have fun with that and let me know how it works out for ya!

    modx
    Participant

    Hi, sorry if I ask a question here but it is also with regards to adding a Send Private Message button/link.

    I would like to add it on the user profile. For example when a user views my profile, he/she can send me a private message through my profile page.

    Any help is greatly appreciated. Thank you!

    #242151
    rebekahmeuir
    Participant

    thanks for the encouraging information @5high

    unfortunately, my private messages still do not work. It allows me to compose the message, but when I click Send Message, the message does not send. I do not get an error. The message form goes empty and the message does not appear in the database. The message does not show in the sent messages. It just disappears.

    #242104
    5high
    Participant

    @rebekahmeuir – this has just started happening to me too. All plugins, BP and themes up to date (with theme that’s specifically designed to work with BP).

    On tesing the messaging works if you send it to a member by clicking on the ‘send private message’ in the All members section, but NOT when you compose a message in your own p[rofile section – with subjest line completed, and tested using the memebers’ Name and username. It shows an error message that the message can’t be sent.

    Anyone else experiencing this?

    I’ll check with other plugins and the theme and will update here if I find anything, but any info would be really useful!

    Cheers.

    #242053
    Henry Wright
    Moderator

    That particular notification is for a private message. See where it says component_name. Post IDs won’t relate to messages

    gennaro80
    Participant

    DanBp,
    this helped me too. Thank you very much!

    Is it possible to have something like that to put a “send private message” on product page (whoocommerce) to private message the User who upload product?
    thank you!

    #241782
    ghar123
    Participant

    Thank you! Is there anything in the buddypress settings that can make all the forums private? For example, if the click on the forums link then they cannot see any of the forums until the login.

    Prabin
    Participant

    @danbp, I have an issue..

    I have “Most Agreed” option in single group page. but the query is not returning desired value.
    can you look into this?

    Here’s the Screenshot
    Most Favourite dropdown

    and Here’s the code

    
    if( class_exists( 'BP_Group_Extension' ) ) :
    
    class bpgmq_feature_group {
    
    public function __construct() {
    $this->setup_hooks();
    }
    private function setup_hooks() {
    $bp = buddypress();
    
    add_filter( 'bp_ajax_querystring', 'custom_filter_ajax_querystring' , 999, 2 );
    // you need to do it for the group directory
    add_action( 'bp_group_activity_filter_options', array( $this, 'agreed_option' ) );
    
    }	
    public function agreed_option() {
    ?>
    <option value="featured"><?php _e( 'Most Agreed' ); ?></option>
    <?php
    }
    
    }
    
    function custom_filter_ajax_querystring( $querystring, $object ) { 
    #var_dump($querystring);
    if($object != 'activity' )
    return $querystring;
    
    $defaults = array('type'=>'active','action'=> 'active','scope'=> 'all','page'=>1,'order'=>'DESC');
    
    #exit;
    /*if( $bpgmq_querystring['type'] != 'featured' ) 
    return $querystring;*/
    $bpgmq_querystring = wp_parse_args( $querystring, $defaults );
    if( $bpgmq_querystring['type'] == 'featured' ){
    $bpgmq_querystring['meta_query'] = array(array('key'=> 'favorite_count','value'=> 1,'type'=> 'numeric','compare' => '>='));
    
    return apply_filters( 'bpgmq_filter_ajax_querystring', $bpgmq_querystring, $querystring );
    }
    var_dump($querystring);
    }
    
    function bpgmq_agreed_group() {
    if( bp_is_active( 'activity') )
    return new bpgmq_feature_group();
    }
    
    add_action( 'bp_init', 'bpgmq_agreed_group' );
    endif;

    Thanx in Advance

    #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
    Anonymous User
    Inactive

    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.

Viewing 25 results - 851 through 875 (of 3,458 total)
Skip to toolbar