Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 151 through 175 (of 3,875 total)
  • Author
    Search Results
  • jkgbs
    Participant

    Hi,

    I am trying to setup Buddypress but Friend, public message, private message are not showing on frontend. Neither is members. Can anyone help please?
    Thanks
    Jane

    #324253
    kobusjfk
    Participant

    Wordpress v. 5.9.3
    Buddypress v. 10.2.0
    Theme. BuddyX

    In Private Messages – the message body part ‘shows’ at the top that you can attach a file or a link,
    the link option works, but when you click on the image attachment, it gives a popup that asks for the ‘source’ of the image. It doesn’t open a normal file explorer window to select the image.
    Please, how do I FIX this?

    #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.

    #324051
    realadulting101
    Participant

    Hi there, I was wondering if you are able to tell me why my buddypress private messages are not sending. I use buddypress with memberpress for my online course membership platform. They used to send no problem from member to member but no for some reason when you click send nothing happens. Thanks so much! this is the site but you would need to login to see the member area… http://www.realadulting101.ca

    #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).

    #322759
    cheyenne711
    Participant

    Hi, I have email notifications enabled however email notifications for new message received or you have unread messages are not coming through. I would prefer to share the website link privately. Thank you!

    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?

    patriqueuiliam
    Participant

    Is it possible to create an if/else function to find out if the user has already sent a message to another user?

    When you visit the profile, it is possible to have a notice showing that you have already sent him a private message.

    Sorry about my English. I’m using the translator!

    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 šŸ™‚

    #321924
    judahorion
    Participant

    I am attempting to allow users to decide whether or not they’d like to be anonymous when sending a private message to a user via a checkbox that says “Send Anonymous” and I feel like I have all the necessary elements needed but have no idea how to put it together.

    The intention of me wanting to implement this is because my users will be treating these anonymous messages as submissions of sorts, and will not be directly replying to them. I simply want the option for the message to pop up in their inbox, and if it’s anonymous, they will copy and paste the contents of the message into a new post and answer it there. My users will be using the message feature as an “ask box”.

    So, if the checkbox is checked, I want to set the sender id as 55 which is the USER id of a user I’ve made named “anonymous”.

    <input type="checkbox" id="send-anonymously" name="send-anonymously" value="1" />
    			<div class="rolescape_field_indication"></div>
    			<?php _e( "Send Anonymously.", 'rolescape' ); ?>

    I believe I can do this by adding <?php wp_nonce_field( 'messages_send_message' ); ?>
    after the form, but not sure how to modify the messages_send_message function to call for the conditional elements such as if the checkbox is checked then it would be 'sender_id' => 55 and if it’s unchecked then it would be 'sender_id' => $bp->loggedin_user->id;

    I hope this makes sense. I am fairly new to PHP but learning every day. Thank you so much for your hard work.

    #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.

    #321750
    Bedurion
    Participant

    Greetings.

    I have been looking for information but have not found a clear solution. That is why I thought it would be best to contact you, the developers.

    I would like to show only the @usernames in the buddypress profiles and also in the bbpress forums, also in the private messages or blog comments.

    This is possible?

    Thanks for your patience.

    #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

Viewing 25 results - 151 through 175 (of 3,875 total)
Skip to toolbar