Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 351 through 375 (of 3,842 total)
  • Author
    Search Results
  • #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.

    #309580

    In reply to: BuddyPress 5.1.1

    SocolSRT
    Participant

    I have a problem. The plugin has 2 designs. Old and new. Thus, everything works on the old, and private messages do not work on the new. Just a blank page.

    #309440
    werny
    Participant

    After updating Buddypress I noticed some strange things:
    – I have two buttons for “Private Message” on my Member-List-page.
    – Also I have double settings (General and Style) in my customizer page:
    Settings Customizer

    What can I do?

    #309411
    sophiavancouver
    Participant

    A group of new users were added using the “Import users from CSV” plugin, which has been used sucessfully before. After the import it was discovered that one of the new users could not access the group she had been added to by the admin. I was contacted and added a test user (created before the import) to the group. That user could not access that group or any other group I added it to.

    the group is showing in my test users list of groups subscribed to, in the list of members of the group, and an activity was created when they joined the group, but when I access the private group as that user, I receive a ‘this is a private group and you need to join first’ message and am unable to see the content.

    I had a look at the user table in phpmyadmin to see if there were any obvious errors like duplicate indexes. Nothing popped out.

    I cloned my site, changed the theme to 2020, deactivated all the plugins except buddypress and the error still exists.

    My own admin user is a member of the groups and can see them just fine.
    Site health says REST api encountered an error, background updates are not working as expected and the site could not complete a loopback request. The site is recently on a new host, but these errors were present prior to the move.

    What should I be looking for here to troubleshoot this? I’m assuming the import (which has been used successfully before several times) corrupted something in one of the tables buddypress uses to track group membership, I’m just not sure how to correct it.

    seaspray
    Participant

    I’m new to BuddyPress but enjoying what it can do.

    I’m creating a website/community site for a sailing club and I want to be able to restrict member profile views to cogged in members. Actually, I’d like to make the member directory private too. I can’t quite work out how to do this. In the UK (and Europe) we have strict Data Protection laws and I’m a bit surprised the default seems to be only to restrict Profile edits… Anyhow, if someone can steer me in the right direction I’d appreciate it.

    Many thanks.

    #309250
    Jing
    Participant

    Hi,

    We would like to achieve the following:

    Group X has been updated by the site admin to be public. Before that, Group X is private.

    And we would like the group admin of Group X to receive a notification.

    In this case, how can we send an email notification to the group admin?

    Thanks a lot.

    Jing

    #309249
    Jpl75
    Participant

    HI,
    I already asked this question 4 weeks ago without 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.2.4 with Twenty sixteen, Buddypress 5.0.0, https://www.alpes-spirit-chapter.com/
    Regards.

    #309154
    ekadevau
    Participant

    Hi folks,
    we have a private group where a user sent out some invites. The list under “pending invites” (like here: checking for pending invites) offers a “delete” or “remove” button. However, clicking on it won’t remove anything but give the generic error message “Group invitation could not be removed”. This happens with expired invites as well as with new invites.

    Running on Buddypress 5.0.0 on WordPress 5.2/5.3, additional BP-Plugins Group Email subscription, and the Woffice Theme (nothing special about invitations here, I think).

    Is there – besides this screen – any option to remove pending invites to renew an invitation? And: do invitations really expire? At this point I’m not sure it’s a user issue, but I can reproduce the “cannot remove” issue with new invitations as mentioned.

    Thanks for any hint!

    regards
    eka

    #309121
    ajitraghavan
    Participant

    WordPress is a free open-source platform that can be accessed by any user and is used for website building and content management that improves your website from personal to global corporate websites. Choose the Best WordPress Hosting is designed to adapt to any platform, it contains wide collection of WordPress themes and plug-ins.

    Free WordPress Hosting – They provide free web hosting portal i.e WordPress.com which is completely free but contains some limitation in controls

    Shared WordPress Hosting – The multiple websites share the same IP address and the server includes the memory, hard disk space, and bandwidth

    Virtual Private Server – They have access to provide certain portion of resources on the server, they allocate resources to VPS users depending on their requirement, at additional charges you can avail extra space and memory

    Dedicated Hosting – The server resources are allocated to a single client, you have the access to use hard disk space, bandwidth, speed, security and SEO aspects

    Managed WordPress Hosting – They provide specific hosting that provides WordPress based websites, they include CMS update, automatic updation, security, and website performance

    The multiple options in WordPress hosting are Shared web hosting, Free web hosting, VPS, Dedicated and Managed Web hosting. The best WordPress improves your SEO and in turn, increases the sales. Choosing the best among many web hosting companies is a big challenge, you need to decide based on the type of website, budget and time.

    #309093
    brunov99
    Participant

    Hello,

    Is there the possibility to create nested groups for example: Doctor> Surgeon,
    Doctor> Pediatrician, Doctor> Oncologist …
    Each group is private with its own forum.

    I tried BP Group Hierarchy plugin which returns a lot of php errors.
    BBP 5 / bbP 2.6

    Thank you
    bv

    #309072
    webmasterfreya
    Participant

    If the group is private so is also the forum that belongs to it.

    brunov99
    Participant

    Hello,

    I have created several private buddyPress groups and each group has a private bbPress forum.

    1) As the group is private do I also have to put the forum inside group as private?
    2) If so, do I also have to make private the sub-forums of a main forum that is already marked as private?

    Thank you
    bV

    #309070
    brunov99
    Participant

    Hello,
    I have several different (private) BuddyPress groups with each their specific bbPress forum (private) and I try to give each forum a different look.

    Is there a way to use or wrap the pages of a BuddyPress group forum with a div # ID to write CSS styles for each forum based on the page #ID?

    Thank You
    bV

    #309069

    In reply to: Private message

    webmasterfreya
    Participant

    Tried it,
    I click on “Private message” and arrive on my profile.
    Only have to fill in the subject and the text. The recipient is already filled in.

    e.g.
    Verzend naar (gebruikersnaam of naam van een vriend)

    ProfielfotoStephanie123

    Dit is een aankondiging voor alle gebruikers.
    Onderwerp [subject field]
    Bericht [message field]
    [send button]

    So in your case it is not normal behaviour.

    #309059
    Javimarcal
    Participant

    Is it possible to link a blog post so that it is only visible to a private group?

    Thanks!

    #309038
    Nahum
    Participant

    Sounds like something is messing with the default behaviour then. Personal activity updates would never appear in any group unless it was “post in group”, vs “post in profile”

    Do you have a filter or plugin already set to do private sitewide activity stream?

    “Activity Stream for friends only” & “Currently, I have the privacy option the restrict each post to Public, Friends and Only me. But the Group code you gave me only works if I set the privacy to public.”

    #309034
    Nahum
    Participant

    @naomibuch I think I see what you are saying.

    Private group activities are appearing in the sitewide feed? Is that right?

Viewing 25 results - 351 through 375 (of 3,842 total)
Skip to toolbar