Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 2,526 through 2,550 (of 3,463 total)
  • Author
    Search Results
  • #94521
    Paul Wong-Gibbs
    Keymaster

    Won’t the built-in “private” group type do?

    Maryke van Rensburg
    Participant

    Is the plugin compatible to wp 3.0.1 and new buddypress?

    #94374
    blauweogen
    Participant

    Hi, I am interested in people who are NOT login in (ie people browsing) to be able to send an email to a member from the member profile page. I was looking for a way to put an email form that does not show the members mail in the code, so it can’t be seen by bots or in the source. I considered trying to use the private messaging system in buddypress. Anyone have any ideas?
    Essentially, Members pay to be on the site and set up a profile. Regular people (customers) can contact them without knowing the email of the member.

    #94225
    Beck B
    Participant

    Any takers? Or redirectors, even?

    Roger Coathup
    Participant

    @leguis08

    algunas cosas:

    [es tan temprano – no puedo escribir mi respuesta en castellano]

    1. You should not change the core BuddyPress files (e.g. bp-activity-templatetags.php). If you do this, you will make it much harder to upgrade your site.

    2. If you want to show all activity items on the home page (including the hidden items), you can do this in your theme files (without changing the BuddyPress core files):

    – Have you built your own child theme? If not, check the ‘docs’ section of this site for information
    – In the activity_loop file in your child theme, include the parameter (‘show_hidden’=>true) in the call to bp_has_activities()

    3. No, it’s not a bug to let you reply to an activity item:

    – The default logic for privacy / hidden decides whether an activity item is shown in the stream. By default, private / hidden items wouldn’t be shown. You have over-ridden this logic, by changing the template tag to show all items regardless of whether they are hidden or not
    – Once an item is shown, you can reply to that item (unless it is a blog or forum item with replies disabled)

    4. If you want to show hidden / private items, but disable replies to them if the member is not in the group:

    – Try adding an additional check for group membership in the activity-meta section of entry.php in your default theme. I’m not sure if there is enough information in the activity item to let you do this

    #94039
    christofian
    Participant

    I tried making the group completely public and private: didn’t work.

    #93890
    paulhastings0
    Participant

    @owrede Make sure that you’re using BP 1.2.5.2

    #93879
    Oliver Wrede
    Participant

    The problem is still existing… :-(

    #93351
    @mercime
    Participant

    @jimsnaps “So is there no way to use buddypress, block out what’s not needed, and add an article mod? “
    I answered based on your requirements, and you mentioned forums were optional :-) No intention to limit you at all, just keeping it simple and clear. Of course you could install BuddyPress, and activate only the component/s you need at this time.

    If you want the Forums component, know that you need to activate Groups component as well because the BP forums component is attached to groups. And members automatically join a group by default when they post to the group’s forum unless that group is private and no-one can post to that group’s forum unless invited to join the group. I also suggest reading through this general reference
    https://codex.buddypress.org/getting-started/configure-buddypress-components/

    Of course with BP activated, there’s the One Quick Post plugin which will allow your members to post articles from the frontend. However, you will need to code using BP blog loop to generated the list of posts that each member has posted in your blog to show up in individual member’s profile page.

    If you do not want to go through all that, install external bbPress forum and integrate it with your WordPress installation. When you’re ready to use BuddyPress components, BP can integrate existing external group forum to its fold – again, with the caveat that forum will be then be attached to groups.

    #93182
    @mercime
    Participant

    That is strange indeed. What did you add/delete/upgrade in your install before strange behavior was manifested? Could it be new user is typing in foreign characters or playing around OR is your install for a private community?

    #93077
    Stacy (non coder)
    Participant

    Wp- private claims to do this (https://wordpress.org/extend/plugins/wp-private/).

    #93071
    paulhastings0
    Participant

    While I don’t have personal experience with Mingle, it makes sense that you should at least be able to migrate the userbase over. As for Private Messages, Friendships, etc. that sounds more like a job for a plugin.

    Make sure though that before you do anything that you create a backup.

    #93032
    @mercime
    Participant
    #93031
    Tolden
    Member

    Does no one use this plugin and can help me?

    #93027
    phos flip
    Participant

    Don’t know if this is any use to anyone and no doubt there are far better ways of doing it but just in case it is of use….

    I’ve created (hacked really) a plugin made up of 3 files, one of which is useless for now but at a future point I’d like to play around with it.

    bp-group-catdisp.php

    `<?php
    /*
    Plugin Name: Display Categories
    Plugin URI:
    Description: Displays a blog category in groups
    Author: Mas
    Version: 0.1
    License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html
    Site Wide Only: true
    */
    if ( !defined( ‘BP_GROUP_CATDISP’ ) )
    define ( ‘BP_GROUP_CATDISP’, ‘programme’ );

    function bp_group_catdisp_init() {
    bp_group_catdisp_wrapper();
    }

    if ( defined( ‘BP_VERSION’ ) )
    bp_group_catdisp_wrapper();
    else
    add_action( ‘bp_init’, ‘bp_group_catdisp_init’ );
    //above links to admin screen in backend
    require(dirname(__FILE__) . “/bp-group-catdisp-admin.php”);

    // group options
    function bp_group_catdisp_wrapper() {
    class bp_group_catdisp extends BP_Group_Extension {
    var $visibility = ‘private’;

    var $enable_create_step = false;
    var $enable_edit_item = false;
    var $has_caps = false;

    function bp_group_catdisp () {
    global $groups_template;

    // group title

    $this->name = __( ‘Programme’, ‘programe’ );
    $this->slug = BP_GROUP_CATDISP;
    $this->nav_item_position = 12;
    $this->create_step_position = 12;

    // group ID for displaying category within
    global $bp;

    $group_array = array( 17,11 );

    if ( in_array( $bp->groups->current_group->id, $group_array) )
    //group ID to display in array. Note can reverse this code ie. set it not to display in listed groups by placing !in_array( $bp etc.

    {
    $this->enable_nav_item = true;
    } else {
    $this->enable_nav_item = false;
    }

    }

    function display () {
    global $bp, $groups_template;

    include(“bp-group-catdisp-edit.php”);

    //bit above links to file that prints to tab

    }

    }
    bp_register_group_extension( ‘bp_group_catdisp’ );
    }

    ?>
    `

    bp-group-catdisp-edit.php

    `

    stories4change Y-Care Programme

    Information and modules related to the Y-Care Programme 2010/11

    <a href="” rel=”bookmark” title=”Permanent Link to “>

    Sorry, no posts matched your criteria.

    `

    bp-group-catdisp-admin.php

    `<?php

    function group_catdisp_add_admin_menu() {
    add_submenu_page( ‘bp-general-settings’, __( ‘Group Categories’, ‘bp_group_catdisp’ ), __( ‘Disp Cats’, ‘bp_group_catdisp’ ), ‘manage_options’, __FILE__, ‘group_catdisp_plugin_options’ );
    }
    add_action(‘admin_menu’, ‘group_catdisp_add_admin_menu’, 15);

    function group_catdisp_plugin_options() {
    if (!current_user_can(‘manage_options’)) {
    wp_die( __(‘You do not have sufficient permissions to access this page.’) );
    }
    $updated = false;
    //above this is php for creating admin page and below is printed onto admin page

    ?>

    <?php
    if ( !$options = get_option( ‘bp_gm_settings’ ) )
    $per_page = 10;
    else
    $per_page = $options;

    $args = array( ‘type’ => ‘alphabetical’, ‘per_page’ => $per_page );

    if ( $_GET == ‘name’ )
    $args = ‘alphabetical’;
    else if ( $_GET == ‘group_id’ )
    $args = ‘newest’;
    else if ( $_GET == ‘popular’ )
    $args = ‘popular’;

    if ( $_GET )
    $args = $_GET;
    else
    $args = 1;

    if( bp_has_groups( $args ) ) :
    global $groups_template;
    ?>

    <?php
    if ( !$group )
    $group =& $groups_template->group;
    ?>

    Category

    Categories

    You don’t have any groups to manage.

    <?php
    }
    ?>
    `

    The first two hard code a group by ID and display a selected wordpress category within that group. The last file is the useless one. I’d started hacking from one of @boonebgorges plugins with the idea of creating an admin screen from which groups could be linked to blog categories.

    I’ve run out of time for now to play with that further and so for now am just going to duplicate the first two files for another couple of groups which will work for my purposes.

    #92834
    amahesh
    Member

    I have been playing around with this for quite some time but cant get it to work. I just want it so that anyone can see who the members are of a private group. I got close and you can see at http://snipbids.com/groups/electronics-1682147612/members/

    Something is showing but I cant get the list of group members to show

    Any ideas? please any help would be greatly appreicated

    @r-a-y: I made the changes in the templatetags file to get to this result

    #92787
    Dickson Waudo
    Participant

    @nuprn1 thats a nice idea, I don’t know about the apply_filter though. the `$browse_sql` var is a new var that I initiate in just that function and within the scope of the if statement. Reasons being I added a whole other table to be queried in `$paged_groups` and `$total_groups` array being returned by the `get_active` function.

    Its a small line of code, easily replaced on upgrade and works perfectly fine for me right now, I just wanted to be able to access, append/modify and object oriented class function from an outside function (that doesn’t make sense) lol. Something like whatever I have in my what if statement gets its own function and the arguments from the get_active function and processes my query after get active is complete (sorta), its not a private function so I can access it outside the BP_Groups_Group class, just don’t know how I can do an add_action or an apply_filter

    #92698
    Josh Frank
    Participant

    I just re-posted this in the Private Community plugin forum. After deactivating the plug-in, the feed works without an error. I will follow up on the plugin’s thread. Let me know if you have any suggestions for making these play nicely! New forum threat at:
    https://buddypress.org/community/groups/buddypress-private-community/forum/topic/activity-stream-rss-parsing-error-1/

    #92374
    NipponMonkey
    Member

    @spinhead, the problem seems to be because your blog isn’t in the root domain. I think you need to change the config file a little to get it working. See my reply:
    https://buddypress.org/community/groups/buddypress-private-community/forum/topic/redirect-hell/

    #92360
    Ray
    Participant

    Thanks for the response! My goal is to install the classifieds plugin for BuddyPress and then gave different school networks where students can put up classifieds between themselves(the site is more elaborate but that’s the nuts and bolts). Do you think this is something I can achieve with buddy press?

    Private groups
    Automatic add to particular group based on school selected(could be a predefined group already made)
    The classifieds section be different on each group
    No friends, PMs if need be but there will be the classifieds bored so there’s really no need

    Thanks!
    -Ray-

    #92342
    spinhead
    Participant

    I’ve also had problems; posted my issue on the plugin’s forum.

    #92185
    LPH2005
    Participant

    Unless someone can see a better way to optimize this file, this is my final online version:

    `php_value memory_limit 256M

    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^thechembook.com [NC]
    RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]

    RewriteCond %{HTTP_HOST} ^thechemistrybook.com [NC]
    RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]

    RewriteCond %{HTTP_HOST} http://www.thechemistrybook.com [NC]
    RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]

    RewriteCond %{HTTP_HOST} http://www.chemhints.com [NC]
    RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]

    RewriteCond %{HTTP_HOST} ^chemhints.com [NC]
    RewriteRule ^(.*)$ http://www.thechembook.com/$1 [L,R=301]

    php_value session.gc_probability 1
    php_value session.gc_divisor 100
    php_value session.gc_maxlifetime 3600
    php_value session.save_path /path/to/sessions

    # Protect the htaccess file

    Order Allow,Deny
    Deny from all

    # Protect wpconfig.php

    Order Allow,Deny
    Deny from all

    # Disable directory browsing
    Options All -Indexes

    # BEGIN COMPRESSION AND CACHING

    # Enable compression
    AddOutputFilterByType DEFLATE text/css text/javascript application/x-javascript text/html text/plain text/xml image/x-icon

    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4.0[678] no-gzip
    BrowserMatch bMSIE !no-gzip !gzip-only-text/html
    BrowserMatch bMSI[E] !no-gzip !gzip-only-text/html

    # Make sure proxies deliver correct content
    Header append Vary User-Agent env=!dont-vary
    # Ensure proxies deliver compressed content correctly
    Header append Vary Accept-Encoding

    # No ETags, No Pragma
    Header unset Pragma
    Header unset ETag
    # Default cache time to 1 year (31536000 sec)
    Header set Cache-Control “max-age=31536000, public, must-revalidate”

    # No ETags
    FileETag none

    # CACHE SETTINGS (mod_expires)

    # Turn on Expires
    ExpiresActive On
    # set default to “access plus 1 year”
    ExpiresDefault A31536000
    # html – “modification plus 1 hour”
    ExpiresByType text/html M3600
    # css and JavaScript – “modification plus 6 weeks”
    ExpiresByType text/css M3628800
    ExpiresByType text/javascript M3628800
    ExpiresByType application/x-javascript M3628800

    # No cache for php-files

    ExpiresActive Off

    Header set Cache-Control “private, no-cache, no-store, proxy-revalidate, no-transform”

    # END CACHING

    # BEGIN WordPress

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]

    # END WordPress`

    #92074
    cbowcutt
    Member

    gotcha – didn’t see that before. in the field next to Create Group Capability it appears I can only leave the text “upload_files” in there (it doesn’t take “subscriber”). I deleted the text for Create private group capability and Create hidden group capability but those options still appear when I go to create a new group. I’m clearly doing something wrong….

    #91963
    Boone Gorges
    Keymaster

    Sounds to me like most of your requirements could be met with WP Multisite plus a few selected plugins and themes.
    – P2 allows for front-end posting
    https://wordpress.org/extend/plugins/more-privacy-options/ expands WP’s default privacy options to allow blog admins to hide their blogs from everyone but themselves
    – Forums could be accomplished with bbPress or a forum-specific WP plugin

    Depending on what you need out of “blogs”, you might also be able to repurpose BuddyPress groups to do something similar. For instance:
    – Each member is the sole member of a private/hidden group, and uses BP activity to “blog”. Since this happens through BP, there is no WP Dashboard involved.
    – Likewise with Notes
    – Depending on what you want with “Link List”, that can be pretty easily done with an additional profile field.
    – Forums would of course be built in, in the form of non-private groups that the user could join.

    How to decide? If you don’t need the rich functionality of blogs (post revision history, out of the box multimedia support, etc), then actually giving each user two WP blogs might be too much overhead. In that case, BP would be a good choice. The functionality that you’d need is all already there; your work would be limited to customizing and configuring the interface.

    #91700
    NipponMonkey
    Member

    I’ve now added greater support for allowing access to your site. In the array of allowed URIs, you can now use ‘*’ at the end of an allowed URI,

    e.g. Array(‘/public-blog’, ‘/public-blog/*’) would allow access to ‘/public-blog/post-1’, ‘/public-blog/post-2’, etc…

    This is useful for allowing greater access to your site while keeping it private, and for allowing access to parts of your site that certain other plugins might require.

    See FAQs for more information:
    https://buddypress.org/community/groups/buddypress-private-community/home/

Viewing 25 results - 2,526 through 2,550 (of 3,463 total)
Skip to toolbar