Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 126 through 150 (of 3,501 total)
  • Author
    Search Results
  • #324223
    kobusjfk
    Participant

    In BuddyX theme, there is two options to contact members. Either via Public Message or Private Message.
    My theme does NOT show the PRIVATE MESSAGE option anymore!
    PLEASE HELP

    #324170
    danielasanhueza
    Participant

    Hey, so i am trying to add a filter in the members search to only show the profiles that have a certain role in an Xprofile field, doing some research i came across the next code

    if ( !defined( 'ABSPATH' ) ) exit;
     
    class BP_Loop_Filters {
     
        /**
         * Constructor
         */
        public function __construct() {
            $this->setup_actions();
        }
     
    
        private function setup_actions() {
    
            add_action( 'bp_members_directory_order_options', array( $this, 'random_order' ) );
     
    
            if( bp_is_active( 'groups' ) )
                add_action( 'bp_groups_directory_order_options',  array( $this, 'random_order' ) );
     
    
            if( is_multisite() && bp_is_active( 'blogs' ) )
                add_action( 'bp_blogs_directory_order_options',   array( $this, 'random_order' ) );
        }
     
    
        public function random_order() {
            ?>
            <option value="random"><?php _e( 'Random', 'buddypress' ); ?></option>
            <?php
        }
     
    }
     
    function bp_loop_filters() {
        return new BP_Loop_Filters();
    }
     
    add_action( 'bp_include', 'bp_loop_filters' );

    i tried adjusting it to call the Xprofile fields i want but it caused a complete error on the website, any help?

    tabarlyy
    Participant

    Hi,
    here is the my code. tab is created,
    but if user not member this private group redirect to wp-login page. how to open everyone this tab?

    function custom_members_tab() {
    if ( bp_is_groups_component() && bp_is_single_item() ) {
    global $bp;
    $group_link = bp_get_group_permalink( $bp->groups->current_group );
    $tab_args = array(
    ‘name’ => esc_html__( ‘destination’, ‘default’ ),
    ‘slug’ => ‘destination-members’,
    ‘screen_function’ => ‘destination_members_screen’,
    ‘position’ => 60,
    ‘parent_url’ => $group_link,
    ‘parent_slug’ => $bp->groups->current_group->slug,
    ‘default_subnav_slug’ => ‘destination-members’,
    ‘item_css_id’ => ‘destination-members’,
    ‘access’ => ‘anyone’,
    ‘show_tab’ => ‘anyone’,
    ‘show_for_displayed_user’ => true
    );
    bp_core_new_subnav_item( $tab_args, ‘groups’ );
    }
    }
    add_action( ‘bp_setup_nav’, ‘custom_members_tab’ );

    function destination_members_screen() {
    add_action( ‘bp_template_content’, ‘custom_group_tab_content’ );
    bp_core_load_template( ‘buddypress/members/single/plugins’ );
    }
    function custom_group_tab_content() {
    echo “show non group members, guests, everyone”
    }

    I read this ticket, but I couldn’t understand how to use it.
    https://buddypress.trac.wordpress.org/ticket/4785

    #324110

    In reply to: Database Errors

    Mike Witt
    Participant

    @shanebp – OK, I finally figured out how to replicate the error.

    Wordpress 5.9.2
    Twenty Twenty-Two Version: 1.1
    BuddyPress 10.2.0 (Nouveau)
    And some other plug-ins, including MemberPress and bbPress

    (1) Send two private messages to someone.
    (2) That person clicks on one of the notification, and the error happens
    Sometimes it happens if the recipient just refreshes their profile (and hence the notifications)

    Note: There need to be multiple private message notifications. If there’s just one notification the error doesn’t appear to happen.

    The error looks a bit different with BP Nouveau:

    [31-Mar-2022 17:41:07 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') AND user_id = 2 AND component_name = 'messages' AND component_action = 'new...' at line 1 for query UPDATE wp_bp_notifications SET is_new = 0 WHERE item_id IN () AND user_id = 2 AND component_name = 'messages' AND component_action = 'new_message' made by do_action('wp_ajax_messages_get_thread_messages'), WP_Hook->do_action, WP_Hook->apply_filters, bp_nouveau_ajax_get_thread_messages, bp_thread_the_message, BP_Messages_Thread_Template->the_message, do_action('thread_loop_start'), WP_Hook->do_action, WP_Hook->apply_filters, bp_messages_screen_conversation_mark_notifications, bp_notifications_mark_notifications_by_item_ids, BP_Notifications_Notification::update_id_list

    #324065

    In reply to: buddypress groups

    rshay
    Participant

    Perhaps i could make each private group into a page and restrict access to specific admin roles? Is there a shortcode for me to do that?

    #324064
    rshay
    Participant

    Hello!
    I was organizing roles for my admins, i want them to be able to delete activity and public group posts. However currently it includes that they can view/delete activities from private groups even if theyre not apart of such groups. How can i make it so that their admin role is only restricted to public activities/groups? This is really important for my site, i appreciate your help. im using the user role editor by vladimir. Perhaps theres another plugin i can use or css code?
    thank you

    #324057

    In reply to: Database Errors

    Mike Witt
    Participant

    I did manage to duplicate it by sending a couple of private messages back and forth between members. But it doesn’t happen every time. So I still haven’t found a sure-fire way to duplicate it. It doesn’t appear to happen exactly when the message is sent. Maybe when the notification is read? Strangely, in the case where I got the error, I can’t find any expected notifications missing. All the notifications appear to be intact. Both on the profile and in email.

    #323979

    In reply to: message of messages

    shanebp
    Moderator

    Go to wp-admin > Settings > BuddyPress > Components
    Then select “Private Messaging” and save.

    #323138
    mounir0014
    Participant

    I mean private groups !

    #322783
    Mathieu Viet
    Moderator

    Hi,

    About 1 and 2, these meta are not generated by BuddyPress, so I advise you to identify the plugins involved and ask their support.

    About 3, you can probably do it for your site, it’s more risky to do it from the BuddyPress plugin.

    About 4. The only approaching string added by BuddyPress is 'Deleted User' and it’s only added at runt time, so to me these are not added by BuddyPress into the DB, so I’d try to see if this comes from another plugin and contact their support.

    About 5. It’s an interesting point, only the first subject of the messages thread seems necessary, and I wonder do we even need a subject to start a private conversation šŸ¤” ?

    About 6. I don’t think BuddyPress adds postmeta or if it does it’s probably when Post types Activities are on (Blogs component active).

    Johan SP
    Participant

    Hi!

    I have created two member types:

    • Moms
    • Volunteers

    I also use Woocommerce Subscriptions for giving access to our forum/private content.

    I was wondering if it’s possible to assign all subscribers to the “Moms” type automatically upon registering?

    My kindest regards,
    Johan

    gerryj
    Participant

    Hello,

    I am currently developing a website with many different groups and each has its own forum.
    I’m using bbpress to create these forums.
    For every forum, only the group’s members should have access to it, which works fine.
    The problem is that all of these group forums also have subforums but these can be accessed by anyone no matter which group they are in.
    in the forum settings itself, I can only choose between public, private and hidden and since all our users will be logged in anyway there is no difference between Public and private.
    Is there any way to also use the group restriction for subforums?

    Regards
    Gerry

    #322281
    brilor04
    Participant

    Hello,

    The site we’ve developed the client doesn’t want to have any of the forum topics or posts available to the public. I’ve tried a few plugins to try and fix this but none seem to work;

    bbPress Members Only
    BuddyPress Members Only
    Wbcom Designs – Private Community for BuddyPress

    Does anyone know how to completely lock down anything in the /forums/ part of the site so that only members can access?

    elitechsavvy
    Participant

    Hi folks,

    I’m troubleshooting why users cannot write on other members’ posts.

    My wall shows a green button but on other members are grayed out.

    These have been my actions so far:

    1. I’ve checked on Activity Settings and is selected. Which I did on/off with no results.
    2. I’ve run the tool options to “repair”
    3. Remove the plugin (Disable/remove)
    4. Install/activate the plugin
    5. All components are active
    6. All options are active
    7. WordPress report – Version 9.1.1
    Active components Community Members, Extended Profiles, Account Settings, Friend Connections, Private Messaging, Activity Streams, Notifications, User Groups, Site Tracking
    8. When inspecting POST grayed button got this line results: <input class=”loading” type=”submit” name=”ac_form_submit” value=”post” disabled=””>
    9. Check WordPress integrity/checksum – reinstall 5.8 FYI
    10. Reboot the server

    So far no luck.

    Any tips/hints will be highly appreciated!

    #322074
    mathijsvdbeek
    Participant

    Hello,
    I like to disable the auto suggest in the private messages or let the auto suggest only show the names of a specific group. I could not find the solution on the forum. Maybe someone knows how to do this?
    Kind regards šŸ™‚

    #321792
    TKServer
    Participant

    Once in awhile a bot or user will get into the site and send out a bunch of unwanted messages to lots of users. Is there a way to delete all mail, clean up notifications, and clean up recipients, related to a specific user? I’ve gone into the db and eliminated the messages themselves, and the notifications, but I can’t figure a way to clean the table wp_bp_messages_recipients. Without setting this table straight, users see that they have unread messages, but since I deleted the messages they can’t do anything at that point. So they always think they have unread messages.

    #321614
    Jing
    Participant

    Hi, we have implemented a BuddyPress site.

    When user A sends a private message to user B, user B will receive a private message, like this:

    Email notification

    We would like to let user B click on the link in the email, and enter the site directly to check the notification without having to go through the login form.

    What shall we do?

    Please advise.

    Jing

    #321139
    Naomi
    Participant

    I’m running WordPress 5.8.1 running Astra theme.
    Buddypress 9.11

    This is an odd question, but I did something that I now can’t figure out for the life of me on my http://www.charlottemasoneducation.org website to require admin approval for registration. In other words, when someone tries to register, I have to approve them before they can engage with the site. I looked through all my plugins listed below and one of them is giving this functionality, but I can’t figure out which one and how. I want to replicate it on another site I’m working on but I’m not able to figure it out. Any help would be appreciated.

    I thought maybe BP Simple Private, but that only makes the site private, it doesn’t provide the approval process functionality.

    Akismet Anti-Spam
    bbp style pack
    bbPress
    Better Notifications for WP
    BP Simple Private
    BuddyPress
    Code Snippets
    Easy Digital Downloads
    Elementor
    Essential Addons for Elementor
    Events Manager
    Events Manager – OpenStreetMaps
    InfiniteWP – Client
    MC4WP: Mailchimp for WordPress
    Ultimate Addons for Gutenberg
    UpdraftPlus – Backup/Restore
    WooBuddy -> WooCommerce BuddyPress Integration
    WooCommerce
    Wordfence Security
    WP Mail SMTP
    WP RSS Aggregator
    WP-Optimize – Clean, Compress, Cache
    Yoast SEO

    #320944
    Rox-1
    Participant

    Hello,

    Sorry if this is a silly newbie question, I’m making my own site at the moment, and I want to create a profile page where there are seperate fields which can be searched and saved. Each entry would be saved with date and time, a little like a diary or journal. Hopefully, this information can be made available to all other registered members, kept private, or emailed to a third party if required.

    It’s a bit like a journal to keep track of things. The sharing option is there if people want to share with their community, or if they need to email or make their notes visible to someone else.

    I did install BuddyPress yesterday (9.1.1), but didn’t really have a clue where to start – I may be diving into the deep end with this one! WordPress version is 5.8 and my site is http://www.inspireyourdog.com – it’s a work in progress. šŸ™‚

    How would I go about this? Where would I start?

    I suspect it may be simpler than I think it is!

    Thanks,

    Paul.

    #320877
    shanebp
    Moderator

    Did you try BP Simple Private?

    #320745
    shanebp
    Moderator

    Groups can be private – meaning a member has to be invited in order to join.
    You may want to hide the main Activity page as that will show all activity.
    The best way to find out if BP is suitable is to setup a test site and try it out.

    #320541
    thurdev
    Participant

    Hi, I would like to know how I can display on a page, private messages from the inbox, and private messages sent.

    I tried with messages_screen_sentbox and messages_screen_inbox, but doesn’t work.

    #320412
    shanebp
    Moderator

    If you don’t want Friends and Messaging – go to wp-admin > Settings > BuddyPress and open Components and turn off Friends and Private Messaging.

    BuddyPress does not provide Topics or Points, so you will need to figure out where they come from and contact the creators of that code.

    #319955
    shanebp
    Moderator

    For styling, use the customizer: wp-admin > Appearance > Customize

    For privacy, try: BP Simple Private

    #319899
    martenw
    Participant

    I would like all logged in users to be able to display a list of users of private groups.
    How could I accomplish this?

Viewing 25 results - 126 through 150 (of 3,501 total)
Skip to toolbar