Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 326 through 350 (of 3,864 total)
  • Author
    Search Results
  • jbrandsma
    Participant

    I have wordpress version 5.4 and buddypress version 5.1.2. I am using bbpress, youzer, and buddypress to wordpress full sync.

    I had gathered from research that users can private message to other users from the compose screen if they’re not friends, by simply inputting in their username in the input field. But currently the user is only able to send a private message to a friend, rather than any member. How do I open up this functionality so users can find any member in the directory to send a private message?

    #310783
    iamthewebb
    Participant

    I normally open a private browser window when I need to see the site as a logged out user and stay logged in using another tab.

    How does the page look when you have the twentytwenty theme active? Unfortunately as BeTheme is a premium theme I may not be able to help much.

    #310752

    Topic: Private area

    in group forum Installing BuddyPress
    bmotion
    Participant

    Hi there community!

    I’m trying to find the best way to create a private resources area for our website, not for customers but for our team. Looking arround I found this wonderful plugging that I didn’t know about.

    We need to create a no-index series of pages or categories in order to have some resources as pictures, videos an pdf files four our team.
    Is BuddyPress capable to do it? It would be great to have all these extra community features that we can use too.

    I would appreciate any lead in to this requirement

    Thanks to all!!

    #310740

    In reply to: Group Photo Upload

    iamthewebb
    Participant

    I just use standard BP on my sites and using the normal wordpress groups users can upload images although when uploading for posts etc they are not private if this is something you are looking for.

    #310706
    webcomon
    Participant

    For each group the data below is shown
    Private Group / 14 members
    active 1 day, 13 hours ago

    How to hide this data?

    PS:
    WordPress 5.3.2 running sinatra child theme theme.
    BuddyPress Version 5.1.2

    #310687
    peppo90
    Participant

    Hi, how can I disable upload image in private or public messages? Because I don’t have a lot of space available in my site and if the users send a lot of images in a little time I finish my space.
    Thanks

    #310679
    fra88
    Participant

    Hi!
    How can I create a button on member’s profile that redirects to sending an automatic private message to their inbox. For example: a button : “I’m interested” sends the automatic private message: “I’m interested” to that member.
    Thanks!

    matwin23
    Participant

    yes, i use this code…

    // ADD SHORTCODE TO SINGLE PRODUCT – PM link
    add_action( ‘woocommerce_share’, ‘enfold_customization_extra_product_content’, 15 );
    function enfold_customization_extra_product_content() {
    echo do_shortcode(“[bp-pm-button]”);
    }

    //////////////////////////////////////////////////////////////////
    // BuddyPress send private message button
    //////////////////////////////////////////////////////////////////

    /**
    * Get a link to send PM to the given User.
    *
    * @param int $user_id user id.
    *
    * @return string
    */
    function buddydev_get_send_private_message_to_user_url( $user_id ) {
    return wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . ‘/compose/?r=’ . bp_core_get_username( $user_id ) );
    }

    /**
    * Shortcode [bp-pm-button username=optional_some_user_name]
    *
    * @param array $atts shortcode attributes.
    * @param string $content content.
    *
    * @return string
    */
    function buddydev_private_message_button_shortcode( $atts, $content = ” ) {
    // User is not logged in.
    if ( ! is_user_logged_in() ) {
    return ”;
    }

    $atts = shortcode_atts( array(
    ‘user_id’ => ”,
    ‘username’ => ”,
    ‘label’ => ‘Send this Member a Message’,
    ), $atts );

    $user_id = absint( $atts[‘user_id’] );
    $user_login = $atts[‘username’];

    // if the username is given, override the user id.
    if ( $user_login ) {
    $user = get_user_by( ‘login’, $user_login );
    if ( ! $user ) {
    return ”;
    }
    $user_id = $user->ID;
    }

    if ( ! $user_id ) {
    if ( ! in_the_loop() ) {
    return ”;
    }

    $user_id = get_the_author_meta(‘ID’ );
    }
    // do not show the PM button for the user, if it is aimed at them.
    if ( bp_loggedin_user_id() === $user_id ) {
    return ”;
    }

    // if we are here, generate the button.
    $button = sprintf(‘%2$s‘, buddydev_get_send_private_message_to_user_url( $user_id ), $atts[‘label’] );

    return $button . $content;
    }

    add_shortcode( ‘bp-pm-button’, ‘buddydev_private_message_button_shortcode’ );

    calliesens
    Participant

    Hello, I would like to do the following:

    1. Disable friends function: I do not wish my members to contact/interact with each other privately
    2. Groups:
    a. Only admins who are given permissions can setup groups and they can invite any member in the member directory to the group (does the admin have to add every new member as friend in order to do this?)
    b. Members in the group can communicate with each other within the group with @mentions but they cannot add each other as friends, message each other privately or send invites to invite others into the group

    Is the above possible? Any help is greatly appreciated! Thank you very much!

    #310339
    parthiba
    Participant

    Mirrorfly , a white-label chat solution to build instant messaging app for any business with features & customizations that runs on Android, iOS, & Web.

    Mirrorfly SaaP Solution – One Time Payment & customized Solutions
    Messaging & Collaboration – Connect, Chat & Collaborate Beyond Platforms

    Private 1-to-1 Chat
    Push Notifications
    Message Broadcast Option
    Cross-platform Messaging

    Voice Communication – Make Real-time Conversations Anytime, Anywhere
    1-to-1 Call
    Conference Calling
    Voice Call Recording
    Cross-platform Calling
    Cross-platform Calling
    Interactive Voice Response (IVR)

    Video Communication -Explore HD Video Experience You Demand
    One-to-one
    Multi-party
    Video Call Recording
    Screen Sharing
    Picture-In-Picture
    Whiteboard

    Explore more features here

    #310179
    fantasticant
    Participant

    Hi,

    I am using Thrivecart and Wishlist member to create members for my buddypress membership site.

    I can’t seem to stop this from making the users email address immediately public, it shows as the name in profile menu – and also @mentions, and is in their profile url.

    While I have workarounds – and can hide this information using CSS, I would prefer for the system to pick firstname or fullname as the profile name.

    How do I achieve this? .. as users will be concerned at keeping email address private.

    Your help is much appreciated.

    Ant

    matwin23
    Participant

    Hi

    How can I add code to my functions.php to create a button (or text link) displayed on a woocommerce product page to send a Private Message to the buddypress member/author who upload the product?

    The site is using a multi-vendor plugin, WCFM, to create/publish the products.

    Thanks in advance.

    #310132
    keesjan
    Participant

    So anyone using private sections or tabs in buddypress? Any tips?

    keesjan
    Participant

    Hi,
    I want to make a private section in the profile to show gravity form results.

    So I assume I need to make a new section?

    In that section I need to make a non-edible html profile field types and fill in the shortcode?

    But I dont see the type shortcode out of the box as profile field types.

    Any hints, addons/ third party plugins that can help here?

    #309972
    samtime
    Participant

    Is there any code in buddypress > notifications that we can copy over to bbpress > includes > extend > buddypress > notifications.php (or vice versa), to make bbPress notifications automatically dismiss like Private Message, Friend Request, and other BuddyPress notifications do?

    If it’s not that straight forward, then is there a way to disable this style off bbPress notifications being sent to BuddyPress?

    My users (and I) really love the notification feature, but just find it really time-consuming to have to dismiss these notifications manually.

    Appreciate any help / advice,
    Sam

    #309955
    ricardo231190
    Participant

    Hello,

    I’m using BP to register users but I can not find the option that would allow me to search in the directory by the profile options instead of only with the nickname. Can I do this without coding or plugins? I tried with plugins, and it worked well but if I wanted to let the users private messege I had to upgrade to the pro version of the plugin…

    Thank you in advance,

    WP version is 5.3.2, BP version is 5.1.2 and page is http://www.languageslearningclub.com, member directory is: https://languageslearningclub.com/members-5/

    #309932

    In reply to: Buddypress widgets!

    Carsten
    Participant

    Hi Renato.
    Thanks for replying. Sorry for not responding. Lets just say, that I have been elsewhere. 🙂 No luck with any plugin on wordpress.
    However, I found this snippet and it works very well. If you deactivate the Friends Connections in Buddypress. But I would really like to have this feature. So maybe you know someone. Who can locate the issue and fix it. That would be a great help.
    Best regards Carsten.

    //Widget Filter:
    —————————————————————————————————-
    class BP_Custom_User_Ids {

    private $custom_ids = array();

    public function __construct() {

    $this->custom_ids = $this->get_custom_ids();

    add_action( ‘bp_pre_user_query_construct’, array( $this, ‘custom_members_query’ ), 1, 1 );
    add_filter( ‘bp_get_total_member_count’, array( $this, ‘custom_members_count’ ), 1, 1 );

    }

    private function get_custom_ids() {
    global $wpdb;

    // figure out if the logged-in user is man or woman
    // CHANGE FIELD id “3” BELOW
    $gender = xprofile_get_field_data( 3, bp_loggedin_user_id() );

    if ( $gender == ‘Man’ )
    // CHANGE FIELD id “3” BELOW
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Woman'”;
    else
    // CHANGE FIELD id “3” BELOW
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Man'”;

    $custom_ids = $wpdb->get_col( $query );

    return $custom_ids;
    }

    function custom_members_query( $query_array ) {

    $query_array->query_vars[‘include’] = $this->custom_ids;

    }

    function custom_members_count ( $count ) {

    $new_count = count( $this->custom_ids );
    return $new_count;

    }
    }

    function custom_user_ids( ) {

    // Don’t do this for the admin
    if(!current_user_can(‘administrator’) ) {
    new BP_Custom_User_Ids ();
    }

    }

    // WORKS FOR DIRECTORY NOT WIDGETS
    // add_action( ‘bp_before_directory_members’, ‘custom_user_ids’ );

    // EITHER OF THESE WORKS FOR WIDGETS BUT NOT DIRESCTORY
    //add_action( ‘bp_pre_user_query’, ‘custom_user_ids’ );
    // add_action( ‘bp_pre_user_query_construct’, ‘custom_user_ids’ );
    add_action( ‘bp_pre_user_query’, ‘custom_user_ids’ );

    —————————————————————————————————-

    reelscene
    Participant

    Hi guys

    I have the Aardvark theme which comes bundled with Paid Memberships Pro and BuddyPress/bbPress.
    WP version 5.3.2, BP version 5.1.2
    I’ve set the site so any non logged-in user goes to a set page, the site is essentially private.

    For some reason, the activity feed on the homepage wall only shows activities when logged in as admin. Any other user gets the message “Sorry, there was no activity found. Please try a different filter.” If they post a status, it’s visible when posted and goes into the database, but refreshing the homepage leads to an empty wall again.

    I’ve only made one recommended tweak to the child theme – redirecting non-logged in users to a “public page”. I can provide the admin login if that helps.

    function my_template_redirect_require_membership_access() {
    if(!is_admin()){
    if ( function_exists( 'pmpro_has_membership_access' ) && ! pmpro_has_membership_access() ) {
    wp_redirect( pmpro_url( 'levels' ) );
    exit;
    }
    }
    }
    
    add_action( 'template_redirect', 'my_template_redirect_require_membership_access' );

    ​​As I don’t know where the problem lies I’m not sure what settings to show you. I’ve tried disabling all of the additional plugins I’ve installed to no avail. Here are the plugins I have installed:

    Aardvark Plugin

    bbP private groups
    This plugin adds private groups to the forums, allocating users to groups, and combinations of forums to those groups, creating multiple closed forums.

    bbPress
    bbPress is forum software with a twist from the creators of WordPress.

    bbPress Notify (No-Spam)
    Sends email notifications upon topic/reply creation, as long as it’s not flagged as spam. If you like this plugin, help share the trust and rate it!

    BP Profile Search

    BuddyPress

    BuddyPress Xprofile Custom Field Types

    Classic Editor

    Coming Soon Page, Under Construction & Maintenance Mode by SeedProd

    Contact Form 7

    Elementor

    Envato Market

    Events Manager

    GD bbPress Attachments

    LayerSlider WP

    Paid Memberships Pro

    Paid Memberships Pro – bbPress Add On

    Paid Memberships Pro – BuddyPress Add On

    Paid Memberships Pro – Mailchimp Add On

    Passster
    Plugin to password-protect portions of a Page or Post.

    Responsive for WPBakery Page Builder

    rtMedia for WordPress, BuddyPress and bbPress

    Sensei Certificates

    Sensei LMS

    Smash Balloon Instagram Feed
    Display beautifully clean, customizable, and responsive Instagram feeds.

    Smush
    Reduce image file sizes, improve performance and boost your SEO using the free WPMU DEV WordPress Smush API.

    Theia Sticky Sidebar

    Transcoder

    Ultimate Reviewer

    UpdraftPlus – Backup/Restore
    Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.

    WooCommerce

    Wordfence Security

    Wordfence Security – Anti-virus, Firewall and Malware Scan

    WordPress Popular Posts

    WP Google Review Slider
    Allows you to easily display your Google Places business reviews in your Posts, Pages, and Widget areas!

    WP-Live Chat by 3CX
    The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP-Live Chat by 3CX.

    WPBakery Page Builder

    Youzer

    I can send a link to a zip file of the settings of the various membership and theme plugins if that helps.

    I understand the issue could be complex but I’m a PHP developer, so if you know of some places I can look in the code or starting points for investigation that would be really helpful 🙂

    Cheers

    joeyleblanc94
    Participant

    Hi,

    I am using buddypress with Gwangi theme to make it a social media website, i want to hide private button on member when they are not friends.

    here’s my code.

    add_filter( 'bp_get_send_message_button', function( $array ) {
        if ( friends_check_friendship( bp_loggedin_user_id(), bp_displayed_user_id() ) ) {
            return $array;
        } else {
            return '';
        }
    } );

    What should i do and where should i apply my code to achieve the customisations.

    #309838
    blenderitalia
    Participant

    http://www.blender.it

    Hello,
    I would like to create a redirect for the pages of private groups for those who are not registered on the site, and for those who are not members of the group.
    For example I would like this page https://www.blender.it/gruppi/associazione-nazionale-blender-italia/home/, private group, to perform a redirect to this page https://www.blender.it/associati/ , or if there is a plugin that creates an editable landing page for private groups, thanks.

    #309830
    bmcconach
    Participant

    Howdy, BuddyPress friends!

    I have been working on a project for fun and have been enjoying the laying out of items and adding plugin functionality a bit much here lately. So much so, in fact, that I put the testing phase on the back shelf for a bit.

    When I was attempting to request membership from a test account to a private group that my admin account was the creator of, I ran into an issue: I can get to the request page (/groups/test-group/request-membership/?_wpnonce=47febc75fe) by clicking the link to do so and then am presented with a textarea for request comments, however when I submit the form (with or without comments) I am taken back to the group’s main page (/groups/test-group/) and am presented with “There was an error sending your group membership request. Please try again.” The request does not come through (not in BP’s notifications, e-mail, pending requests, etc.) at all.

    At first this was a minor irritation because I could go to the group as the admin and invite the test account to join the group. There I am presented with a checkbox for my test account’s name, as well as a submit button; however when clicking on the checkbox, the form instantly submits without ever sending an invite. I even attempted to modify the live source to set the field to checked, attempted to submit, and received a success message stating my invite was sent, but of course it never was.

    I have checked the list of plugins I have on my site, disabled a few I didn’t necessarily need, and have checked each of the remaining to see if there’s any sort of conflict between plugins affecting groups, but to no avail. This functionality is key to the use of groups for my project, so I would sincerely appreciate any advice from more knowledgeable members of the BP community.

    Some support information, including a list of active plugins, can be found below. Please note that any plugin with ** beside it came bundled with the theme.

    == Server Environment ==
    	Operating System: Linux
    	Software: Apache/2.4.6
    	MySQL version: MariaDB Server v5.5.61-MariaDB-38.13
    	PHP Version: 7.2.24
    	PHP Max Input Vars: 2500
    	PHP Max Post Size: 64M
    	GD Installed: Yes
    	ZIP Installed: Yes
    	Write Permissions: All right
    	Elementor Library: Connected
    
    == WordPress Environment ==
    	Version: 5.3.2
    	WP Multisite: No
    	Max Upload Size: 64 MB
    	Memory limit: 512M
    	Permalink Structure: /%postname%/
    	Language: en-US
    	Timezone: America/New_York
    	Debug Mode: Inactive
    
    == Theme ==
    	Name: Gwangi
    	Version: 2.1.1
    	Author: Themosaurus
    	Child Theme: No
    
    == User ==
    	Role: administrator
    	WP Profile lang: en_US
    	User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36
    
    == Active Plugins ==
    	(BuddyDev) BP Auto Login on Activation
    		Version: 1.0.3
    		Author: Brajesh Singh
    
    	Author Avatars List**
    		Version: 1.18
    		Author: Paul Bearne
    
    	Awesome Weather Widget
    		Version: 3.0.2
    		Author: Hal Gatewood
    
    	bbPress
    		Version: 2.6.3
    		Author: The bbPress Contributors
    
    	BP Messages Tool
    		Version: 2.1
    		Author: PhiloPress
    
    	BP Profile Search
    		Version: 5.2.4
    		Author: Andrea Tarantini
    
    	BuddyPress
    		Version: 5.1.2
    		Author: The BuddyPress Community
    
    	BuddyPress Default Cover Photo
    		Version: 1.6.0
    		Author: SeventhQueen
    
    	BuddyPress Extended Friendship Request
    		Version: 1.2.0
    		Author: BuddyDev Team
    
    	BuddyPress Reorder Tabs
    		Version: 2.0.1
    		Author: BuddyBoss
    
    	BuddyPress Xprofile Custom Field Types
    		Version: 1.1.3
    		Author: BuddyDev
    
    	Classic Editor
    		Version: 1.5
    		Author: WordPress Contributors
    
    	Classic Editor Addon
    		Version: 2.6.0
    		Author: Pieter Bos, Greg Schoppe
    
    	Dashboard Notepad
    		Version: 1.42
    		Author: Stephanie Leary
    
    	Easy Custom Sidebars**
    		Version: 1.0.10
    		Author: Titanium Themes
    
    	Elementor**
    		Version: 2.8.3
    		Author: Elementor.com
    
    	Envato Market
    		Version: 2.0.3
    		Author: Envato
    
    	Essential Addons for Elementor
    		Version: 3.7.1
    		Author: WPDeveloper
    
    	Grimlock**
    		Version: 1.2.5
    		Author: Themosaurus
    
    	Grimlock Animate**
    		Version: 1.1.0
    		Author: Themosaurus
    
    	Grimlock for Author Avatars List**
    		Version: 1.0.4
    		Author: Themosaurus
    
    	Grimlock for bbPress**
    		Version: 1.0.3
    		Author: Themosaurus
    
    	Grimlock for BuddyPress**
    		Version: 1.1.4
    		Author: Themosaurus
    
    	Grimlock for Elementor**
    		Version: 1.0.1
    		Author: Themosaurus
    
    	Grimlock for Jetpack**
    		Version: 1.0.4
    		Author: Themosaurus
    
    	Grimlock for Testimonials by WooThemes**
    		Version: 1.1.0
    		Author: Themosaurus
    
    	Grimlock for The Events Calendar**
    		Version: 1.1.2
    		Author: Themosaurus
    
    	Grimlock Hero**
    		Version: 1.0.7
    		Author: Themosaurus
    
    	Grimlock Isotope**
    		Version: 1.0.7
    		Author: Themosaurus
    
    	Grimlock Login**
    		Version: 1.0.10
    		Author: Themosaurus
    
    	Hide Admin Bar
    		Version: 0.3.9.9
    		Author: Shelby DeNike
    
    	If Menu - Visibility control for menu items
    		Version: 0.15
    		Author: Layered
    
    	Kirki Customizer Framework**
    		Version: 3.0.45
    		Author: Ari Stathopoulos
    
    	MediaPress
    		Version: 1.4.6
    		Author: BuddyDev
    
    	Menu Image**
    		Version: 2.9.5
    		Author: Rui Guerreiro
    
    	Simple Buddypress Profile Privacy
    		Version: 0.7.9
    		Author: Justin Hansen
    
    	Social Articles
    		Version: 2.9.5
    		Author: Broobe
    
    	The Events Calendar
    		Version: 4.9.14
    		Author: Modern Tribe, Inc.
    
    	UpdraftPlus - Backup/Restore
    		Version: 1.16.21
    		Author: UpdraftPlus.Com, DavidAnderson
    
    	Verified Member for BuddyPress**
    		Version: 1.1.1
    		Author: Themosaurus
    
    == Must-Use Plugins ==
    	Gateway Relay
    		Version: 1.0
    		Author: Arnold Bailey (Incsub)
    
    	rms_unique_wp_mu_pl_fl_nm.php
    		Version: 
    		Author: 
    
    	WPMU Assist
    		Version: 1.0.2
    		Author: Arnold Bailey (Incsub)
    
    == Elements Usage ==
    	
    	wp-page : 12
    		eael-adv-tabs : 1
    		google_maps : 1
    		image-carousel : 1
    		shortcode : 1
    		text-editor : 1
    		wp-widget-grimlock_author_avatars_section_widget : 1
    		wp-widget-grimlock_posts_section_widget : 1
    		wp-widget-grimlock_query_section_widget : 1
    		wp-widget-grimlock_section_widget : 3
    		wp-widget-grimlock_the_events_calendar_tribe_events_section_widget : 1
    
    == Log ==
    	
    PHP: showing 1 of 1PHP: 2020-01-02 10:43:38 [error X 1][/home/*****/public_html/wp-content/plugins/elementor/elementor.php::97] Cannot redeclare elementor_fail_wp_version() (previously declared in /home/*****/public_html/wp-content/plugins/elementor/elementor.php:97) [array (
      'trace' => '
    #0: Elementor\Core\Logger\Manager -> shutdown()
    ',
    )]
    
    JS: showing 1 of 1JS: 2020-01-11 16:50:05 [error X 1][https://*****/wp-content/plugins/grimlock/assets/js/navigation-stick-to-top.js?ver=1.2.5:27:45] Cannot read property \'top\' of undefined
    #309660
    Jpl75
    Participant

    HI,
    I already asked this question some months ago without any answer from Buddypress support. So I try again !
    Members of my community must be connected to my site to see the members list.
    When I am connected, if I see someone connected (widget in sidebar), I click on his photo, I see his profile and “Private message” near the round photo.
    I click on “Private message” and arrive on my profile.
    I suppose that I only have to write the message. NO ! I must search the name of the person (I was on his profile just before !) and then write the subject, and the text.
    Is it the normal way or is there something wrong in my settings ?
    Thanks in advance.
    WP 5.3.2 with Twenty sixteen, Buddypress 5.1.2 with new template, https://www.alpes-spirit-chapter.com/
    Regards.

    #309655
    mohamedbakry83
    Participant

    Hello professional,
    i would like to add popup for private message to avoid entering each profile to send a message from members directory, what is the best solution for it.

    my site

    samtime
    Participant

    Hi,
    I have bbPress installed which sends BuddyPress notifications to users when someone replies to a topic they created in the forum. However, these notifications don’t seem to automatically go away when clicked (like private message and friend request notifications do).

    Is there a way to dismiss these forum notifications when clicked?
    Currently they can only be dismissed by manually marking them as read on the user profile page.

    Thank you,
    Sam

    WordPress 5.3.2
    BuddyPress 5.1.1
    bbPress 2.6.3

    #309585

    In reply to: BuddyPress 5.1.1

    Roland Bianco
    Participant

    I agree with you you as regards private messages.

Viewing 25 results - 326 through 350 (of 3,864 total)
Skip to toolbar