Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 701 through 725 (of 3,870 total)
  • Author
    Search Results
  • #270509
    Venutius
    Moderator

    Your question is not clear. Are page members – site members?
    The option public – did you mean private? obviously setting a group to public makes it publicly available, so not what you are looking for.

    I’ve been experimenting with the site privacy plugins and if you want a completely private network you should check out BuddyPress Members Only, this ensures all url’s except for the homepage are not accessible to not logged in members.

    ngoegan
    Participant

    Actually, it hasn’t. I checked again today and it’s public. Any ideas on how I can make the events pages private? Is there some code I could add to the page itself to require that users are logged in to see it?

    ngoegan
    Participant

    I tested it and they don’t get any email until I approve them, which isn’t immediate. So it’s. “Check your email that we sent you now.” and then they don’t get it right away until later when I approve them. I think there’s something glitchy going on with my install – I’ve tried a lot of plugins to achieve a private site with new user moderation. No one plugin does it all that I can find.

    ngoegan
    Participant

    WP 4.9.2
    Theme Twenty Twelve
    BP 2.9.3
    BP Registration Options

    When a user registers for our site, they see a message with a header that reads, “Check Your Email To Activate Your Account!”

    Everything I’ve read says that this can only be edited in the Po and Mo files? I downloaded PoEdit and tried to open the file but I get an error.

    How can I edit this title? I’m not sure why they are receiving this message in the first place because they don’t receive an email until admin approves them. Is this an error in BP Registration Options? Or is is there something wrong with our site? I have downloaded and deleted several private site and approve new user type plugins trying to find the right solution.

    Thank you for any help, it is much appreciated.

    ngoegan
    Participant

    WP 4.9.2
    Theme Twenty Twelve
    BP 2.9.3
    BP Registration Options

    I have a private social network site using the Buddypress Registration Options plugin. It only hides bp component pages from non-logged in users. I’d like to hide the Events page as well, which isn’t a bp component. Is there anyway to do this without adding a plugin that would conflict?

    Thank you.

    #270364
    klubnika74
    Participant

    Yes. There is a feature in BuddyPress where one user can send a private email to another user. Since my site is an online training site, I set it up such that my students can email privately to the course teacher (I use Social Learner theme). The problem is that course teacher do not always respond to emails and I need to be able to follow up to make sure that my students get their answers.

    #270346
    Paul Wong-Gibbs
    Keymaster

    Hi @klubnika74

    BuddyPress doesn’t allow a user to email another user directly.
    You may be mixing this up with the email notification messages, that BuddyPress sends out.

    By “send a copy of private message between users”, are you specifically referring to the Private Messages feature within BuddyPress?

    #270284
    Gunu
    Participant

    I use several private groups.

    If a member of a certain group goes to the page with all the groups he can see them all, that’s also good but when he looks at another group he sees – This is a private group and you must request group membership in order to join. – and the Request Membership button.

    How can I remove that button and change the text?

    I use the latest versions of WordPress and Buddypress

    Thanks!

    martijn1972
    Participant

    I have that installed already and that works fine on the Buddypress site itself.

    What I am looking for is a button on an external site that links directly to a users private profiel to post the the article on their activity time line.

    #270246
    avaiya
    Participant

    Wordpress Version:4.9.2
    BuddyPress Version: 2.9.2
    Site: http://www.avaiya.com

    I’d like to have a notifications “bell” on the upper right menu bar of our membership site,
    such that people see the # of notifications they have. These would be notifications from BuddyPress, like when someone receives a private message, when someone gets a friend request, etc. These are the same notifications that get sent out via email as well.

    I’d also like it to integrate with bbPress and for it to show notifications from bbPress like when people post to a forum a member has subscribed to, etc.

    Thoughts on how to do this?

    Thanks!

    #270216
    Gunu
    Participant

    @avaiya,
    you do not have to be friends to send a private message.

    Choose – Messages – Compose and Send To (Username or Friend’s Name)

    avaiya
    Participant

    Wordpress Version:4.9.2
    BuddyPress Version: 2.9.2
    Site: http://www.avaiya.com

    I’m launching a membership site using BuddyPress & bbPress & WP eMember. I’d like all our members to be able to Private Message each other without first having to send a Friend Request, and then that member to have to accept that Friend Request.

    Is there a way to do this?

    Thanks,
    Ande

    klubnika74
    Participant

    I have an online learning site and I need to be able to receive a copy of the email a student (user) sends to the instructor (another user). I found this code but have no idea which file to paste it in. Some guidance (file name and place in the file) greatly appreciated! This code is from earlier reply 2 years ago: https://buddypress.org/support/topic/send-a-copy-of-every-message-to-admin/

    My WordPress version is 4.9.2 and BuddyPress version is 2.9.2

    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’ );

    #270055
    kariellen35
    Participant

    One more piece of the puzzle that I don’t understand is that I was able to resolve this issue when trouble shooting it on my local host, using an exact copy of my website’s files. So there is something interfering with the registration process only when connected to the internet. I wish I could give out my website details here but there is no private reply option.

    Thank you again for your time.

    Take care,
    Kari

    #270002
    ingohaeck
    Participant

    For privacy issues I want to hide certain links on profile view.
    i use the snippet, mentioned here (see script below):
    one

    This works fine with BP related links, but I cannot hide links from CPT like rtMedia and the link of this:

    `function bp_postsonprofile() {
    add_action( ‘bp_template_content’, ‘profile_screen_posts_show’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
    }

    function profile_screen_posts_show() {

    $myposts = get_posts( array(
    ‘posts_per_page’ => -1,
    ‘author’ => bp_displayed_user_id(),
    ‘post_type’ => ‘post’
    ));

    if( ! empty($myposts) ) {

    echo ‘<ul>’;

    foreach($myposts as $post) {
    setup_postdata( $post );
    echo ‘<li><a href=”‘ . get_permalink($post->ID) . ‘”>’ . get_the_title($post->ID) . ‘</a></i>’;
    }

    echo ‘</ul>’;

    wp_reset_postdata();

    } else {

    echo ‘<div class=”info” id=”message”><p>’. bp_displayed_user_fullname() .’ hat keine Beiträge veröffentlicht.</p></div>’;
    }
    }

    add_action ( ‘profile_screen_posts_show’ );`

    function bpfr_hide_tabs() {
    global $bp;
    /**
    * class_exists() & bp_is_active are recommanded to avoid problems during updates
    * or when Component is deactivated
    */

    if( class_exists( ‘bbPress’ ) || bp_is_active ( ‘groups’ ) ) :

    /** here we fix the conditions.
    * Are we on a profile page ? | is user site admin ? | is user logged in ?
    */
    if ( bp_is_user() && !is_super_admin() && !is_user_logged_in() ) {

    /* and here we remove our stuff ! */
    bp_core_remove_nav_item( ‘activity’ );
    bp_core_remove_nav_item( ‘friends’ );
    bp_core_remove_nav_item( ‘groups’ );
    bp_core_remove_nav_item( ‘posts’ );
    bp_core_remove_nav_item( ‘forums’ );
    bp_core_remove_nav_item( ‘media’ );
    }
    endif;
    }
    add_action( ‘bp_setup_nav’, ‘bpfr_hide_tabs’, 15 );

    marinca
    Participant

    Hi – My activity updates are not displaying properly. Instead of the actual update “Hello World” it will only state the fact “Bob made an update” in all places the update details should display: member profile, group page, sitewide activity page.

    I am using:
    Wordpress 4.9.1
    Theme Kleo by Seventh Queen 4.2.12
    Buddypress 2.9.2
    Also, BuddyPress Activity Short Code by BuddyDev 1.1.1

    All my groups are Public Groups (not Private) in case that makes a difference.

    I am still in development mode, so not yet launched. My Buddypress was working perfectly until I migrated my site to a different URL and perhaps some code got changed.

    Can anyone point me in the right direction to how to get the full activity update details to display everywhere instead of just the statement of the update?

    Thank you very much!

    #269819
    infomsh
    Participant

    hello everybody
    i’m new to this plugin
    i want to record all messages between users even they delete messages.
    or a system that send all messages to my email
    thanks

    #269556
    sheraton
    Participant

    Within Buddypress group the setting allow the group to be public or private! However when the group is public and a member of the group post something, that post goes to activity stream on the front end. I like a code that I can put in my Custom CSS, that would only allow the (Admin of the Group) post to be seen in the overall community stream of activity when the setting is set to public. Members of the group post can only be seen within the group, when set to public.

    Regards

    #269486
    erraticramblings
    Participant

    Not to be a pest, but would you happen to know how to change the color of the meta description areas where it says how many group members there are, whether it’s public or private, and what you’re viewing? Thank you.

    #269473
    cbeckley
    Participant

    I am attempting to display some user data on a single page so members of a group can see all of the members within that group’s info without going into each profile. I have successfully displayed 2 custom fields, but cannot display the user’s email address.

    It is a private site, so I cannot link to it. Hopefully this is something minor that I am just missing.

    I have found so many scattered suggestions for this type of thing, but nothing has worked.
    I have tried all of these types with various field names (email, Email, Email address, Account email, etc.) and nothing displays the email address.

    <?php echo bp_member_profile_data(‘field=Email’); ?>

    <?php echo bp_member_profile_data(‘field=Account email’); ?>

    <?php echo xprofile_get_field_data( ‘field=Account email’ ); ?>

    <?php echo get_post_meta(get_the_id(), ‘user_email’, true); ?>

    <?php echo xprofile_get_field_data( ‘user_email’, get_the_author_id()) ?>

    I am updating a copied version in my theme of members.php from /buddypress/members/

    Any ideas would be appreciated. Thanks!

    BP v2.9.2
    WP v4.9.1

    #269472
    ccookasi
    Participant

    I have a (private) corporate intranet that incorporates BuddyPress for Employee Profiles.

    Without giving users the ability to edit their own profiles, I would like the Member Profile Pages to display the Profile Photo, User Name (possibly regardless of “Display Name” choice), User Email, User Description (renamed “Position”), and a link to the local job description page for their position.

    Is it possible to modify the profile fields from wp-profile.php etc. using bp-custom.php and action hooks? Is there a better way to customize the member profile page template?

    Thank you.

    #269412
    bcanr2d2
    Participant

    I am using WP Mail SMTP to get the mail to send without issues. But it seems to affect this particular email only, I am getting everything else as far as I am aware.

    Here are my current active plugins – There is quite a long list.
    I do use Autoptimize, so not sure if it’s affecting anything.
    One of note, is Social Login, which when logging directs to their site, and redirects back to my site to log the user in via their social network, this is where it falls over and does not send this one email. It manages to send other emails related to the login, but it now gives me an idea to look into the code that sends this social email sign up notification.

    (BuddyDev) BP Auto Login on Activation (1.0.3)
    Advanced Custom Fields (4.4.11)
    Allow Multiple Accounts (3.0.4)
    Autoptimize (2.2.2)
    BP Profile Message UX Free (1.5)
    BP xProfile Location (1.2)
    BP XProfile WordPress User Sync (0.6.4)
    BuddyDev Username Availability Checker (1.1.1)
    BuddyExtender (1.0.1)
    BuddyPress (2.7.4)
    BuddyPress Member Type Generator (1.0.3)
    BuddyPress Security Check (2.1.2)
    BuddyPress Simple Terms And Conditions (1.3)
    BuddyPress Xprofile Custom Fields Type (2.6.3)
    BuddyPress Xprofile Member Type Field (1.0.4)
    BuddyPress XProfile Validate with RegEx (0.1.2)
    Cherry Parallax Plugin (1.1.0)
    Cherry Plugin (1.2.8.1)
    Child Theme Configurator (2.1.2)
    Conditional Profile Fields for BuddyPress (1.1.9)
    Contact Form 7 (4.6)
    Contact Form 7 – Dynamic Text Extension (2.0.1)
    Contact Form 7 Conditional Fields (1.0)
    Contact Form 7 Get and Show Parameter from URL (0.9.7)
    Contact Form 7 Honeypot (1.10)
    Contact Form 7 Modules: Hidden Fields (2.0)
    Contact Form 7 Shortcode Enabler (1.1)
    Custom Hooks (1.0)
    Custom Post Template By Templatic (1.0)
    Custom Post Type UI (1.4.3)
    Disable Comments (1.6)
    Display Posts Shortcode (2.7.0)
    FacetWP (2.7.4)
    FacetWP – Map (1.0.5)
    Flamingo (1.5)
    GeoIP Detection (2.7.0)
    GEO my WP (2.7)
    Google Analytics Dashboard for WP (4.9.6.2)
    List Plugins (1.4.4)
    Meta Slider (3.4)
    Optimize Database after Deleting Revisions (4.2.1)
    Page-list (5.1)
    PHP Compatibility Checker (1.4.0)
    Popup Maker (1.4.20)
    Shortcodes in Menus (3.2)
    Social Login (5.2)
    Stream (3.2.0)
    String Locator (2.2.0)
    Sucuri Security – Auditing, Malware Scanner and Hardening (1.8.3)
    SuitePlugins – Advanced XProfile Fields for BuddyPress (1.0.3)
    Theme Check (20160523.1)
    Visual Builder for Contact Form 7 (2.0)
    WPFront User Role Editor (2.13)
    WP Mail SMTP (0.11.1)
    WP Private Content Plus (1.13.1)
    WP Smush (2.6.1)
    Yoast SEO (4.3)

    #269394
    Boone Gorges
    Keymaster

    Ah, interesting.

    1. If you’ve got access (through the mysql command line tool, or through PHPMyAdmin, check the character set and collation https://makandracards.com/makandra/2531-show-the-character-set-and-the-collation-of-your-mysql-tables There may be something funny going on there.

    2. Do you have the same problem with other content? Can you post a private message with a special character in the subject line? A blog post with a special character in the title?

    These items will help narrow down whether it’s a problem with bp-groups, or a database-level config issue.

    #269360

    In reply to: Register page editor

    Boone Gorges
    Keymaster

    BuddyPress’s Register page is a special kind of page that cannot be edited via the Dashboard. That’s why it’s blank when you view it in the normal way.

    To add additional fields to the registration process, go to Dashboard > Users > Profile Fields. Add one for Address and one for Phone Number. Make them required and/or private, if you’d like. As long as they are part of the ‘Base’ profile field group, they will appear as part of the registration process.

    #269260
    Boone Gorges
    Keymaster

    Thanks. I’ve just installed the combination of rename-wp-login and lh-private-buddypress, and I’m unable to reproduce the problem – after logging in, I’m being redirected to the originally-requested page. It may still be worth a test on your end; if temporarily disabling rename-wp-login fixes the problem, it would at least narrow down what’s going on.

    If it were my site, the next thing I’d do is to debug the redirection chain, but I’m unsure how familiar/comfortable you are with debugging PHP functions. Try adding the following settings to your wp-config.php:

    
    define( 'WP_DEBUG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    define( 'WP_DEBUG_LOG', true );
    

    After a few pageloads, WP should have created a file at wp-content/debug.log. Once you’ve confirmed this, drop the following into a bp-custom.php file, and then run through the login redirect process. It’ll dump some info into your debug.log file, which we can use for further debugging.

    
    add_filter( 'wp_redirect', function( $redirect ) {
        error_log( print_r( debug_backtrace(), true ) );
        return $redirect;
    } );
    
Viewing 25 results - 701 through 725 (of 3,870 total)
Skip to toolbar