Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'private'

Viewing 25 results - 76 through 100 (of 3,870 total)
  • Author
    Search Results
  • songdove
    Participant

    I’m back 2yrs later, trying with another build using buddypress. I thought I solved this question away from the support forums here, but don’t remember what I did at the moment. I want the members of private groups, to see private group activity in their main newsfeed. Non members should not see this activity, but members should. I don’t know if I found a code snippet or what, I need to fix this. I want an FB-like experience where you see any activity from any of your groups in your main newsfeed. If you aren’t a member of a private group, you won’t see it’s activity, but if you are a member of a private group, you will.

    #331095
    Varun Dubey
    Participant

    Hi @jcknight,

    Just to clarify, BP (BuddyPress?) does not have its own login pages. However, you can use the default wp-login page and customize it with a third-party plugin. There are also several plugins available that offer login shortcodes or widgets, which can help you create a login page. Hope this helps!

    For the Private community, you can use https://wordpress.org/plugins/lock-my-bp/ until it becomes part of BP v12.0.

    #331012
    Philippe Roussel
    Participant

    Hi,

    Indeed, messaging someone “publicly” does not make much sense if everyone and their mother can see the message, not just the specific group of people you intended it to.

    Now, how do you send a private message to several people at once? I guess I have to be “Friend” with each of them. From there is it enough to click on the username of one of them, then on the Private Message button and simply add in the Send @Username field all the other usernames?

    That’s a bit convoluted. Why the Messages/Compose tabs do not offer a Private/Public message option?

    Thanks again for your help.

    #330966
    Philippe Roussel
    Participant

    Hi,

    I am unable to explain in a clear and succinct way to my website’s future members how to send private or public messages and how to do it individually or in bulk (addressing group members, for instance). One reason for my incapacity is that there is a little bit of information everywhere about these topics, which is often contradictory. The other is that the info is generally obsolete; for instance, I have never seen a “Public Message” button or an “Add Friend” one, though this is still given as true in the tutorials. I have looked around a lot, to no avail.

    Can you point me to an up-to-date and thorough tutorial outside of the official BP documentation?

    Thanks for your help,

    Philippe

    lmstearn
    Participant

    WP Ver: 6.3; BuddyPress Ver: 11.2.0; BBPress Ver: 2.6.9
    Hi, as creating a group and applying it to an existing private forum A is not possible, a new, empty, private forum B is created by default instead. Once the existing forum A is added to the group, will it break anything to remove the newly created empty forum B?
    The two forums appeared to be linked in some way.
    Thanks.

    Kahnu Charan Swain
    Participant

    I have created a new group with the below code.

    // Define the group details.
    $group_args = array(
      'creator_id'    => get_current_user_id(), // The ID of the user who creates the group.
      'name'          => 'My New Group', // Replace this with the desired group name.
      'description'   => 'This is a sample group created by code.', // Replace this with the group description.
      'status'        => 'public', // You can set the status to 'public', 'private', or 'hidden'.
    );
    
    // Create the group.
    $group_id = groups_create_group( $group_args );
    
    if ( ! is_wp_error( $group_id ) ) {
      echo 'Group created successfully. Group ID: ' . $group_id;
    } else {
      echo 'Failed to create group: ' . $group_id->get_error_message();
    }
    

    I want to update the created group status from “public” to “hidden” but I cannot find the proper hook/function.

    #330586

    Topic: Change the buttons

    in group forum Third Party Plugins
    werny
    Participant

    I am using the plugin Block/Suspend/Report users.
    It looks good on desktop but I do not like the secuence in responsive version.

    Screenshot:
    https://www.werny.it/blog/wp-content/uploads/2023/07/IMG_0381.jpeg

    The „Private message button“ moves in a submenu.
    I want this button instead of the „block user“ button and move the other buttons in the submenu.

    Is there any way to do so?

    #330549
    kjah456
    Participant

    Users are very used to sending voice messages in their private conversations. That’s why we are looking for a plugin that enables our participants to comment in the Activity Stream or in a forum not with text, but with voice messages. Is there something promising out there?

    #330398
    myfineweb
    Participant

    Hello everyone, I have a question that I’m looking for an answer for days, I have to create a site with private area that allows to display a table in the user’s page, this table deals with a workout sheet that must be editable only by the administrator, I wonder such a thing is possible with some plugin extensions? if not how can I move according to you?

    TC Conway
    Participant

    I’m working on a fiction/narrative piece and need a very specific site for my readers. I think BuddyPress might be the perfect solution…if I can lock it down and prevent logged in users from editing everything.

    The plan is to create a new website using BuddyPress, create only a handful of accounts, fill them up with content and finally allow my readers to log into each and read the conversations, view friends, relationships, etc. BUT…my readers should not be able to change ANYthing. This includes every single thing in BuddyPress as well as updating the user account info. Think of this site I’m describing as a way to snoop

    To recap:

    • Site: Brand new, members only. The public can’t see a thing without logging in. Thinking BuddyPress (obviously!) + other plugins could fill the bill here.
    • The entire site will be private, and users have to log in to read each profile. This will allow readers to view different sides of the story by reading private messages just between 2 characters.
    • I’ll create several accounts then create content showing them are interacting with each other.
    • I want to allow my readers to actually log in to each account, but prevent them from changing ANYthing. They should be able to click around, read private messages and “consume” everything that that user has access to.
    • Admins can still edit content: This is a nice to have, but not a deal breaker. I’ll be setting up the entire site and creating all the content before I allow my readers to be able to log in.

    Possible? Would love your thoughts on this. I feel there might be a super simple custom bit of PHP in bp-custom.php or another approach?

    Thanks!

    #330322
    kindabisu
    Participant

    To use your BP (BuddyPress) profile picture as the WordPress avatar, you can follow these steps:

    Install and activate the “BuddyPress” plugin: Ensure that you have the BuddyPress plugin installed and activated on your WordPress site. This plugin adds social networking functionality, including user profiles, to your WordPress site.

    Upload a profile picture in BuddyPress: Go to your BuddyPress profile and upload the desired profile picture. BuddyPress allows users to customize their profile information, including the profile picture. Typically, you can find the profile settings in the user dashboard or by navigating to your profile page on the front-end of your website.

    Enable BuddyPress avatar syncing: By default, BuddyPress doesn’t automatically sync the profile picture with the WordPress avatar. You can enable this functionality by adding custom code to your theme’s functions.php file or by using a plugin specifically designed for this purpose.

    Option 1: Custom code:
    Open your theme’s functions.php file (Appearance > Theme Editor > functions.php) and add the following code snippet:

    php
    Copy code
    function bp_sync_profile_picture_with_avatar( $avatar, $id_or_email, $size, $default, $alt ) {
    if ( function_exists( ‘bp_core_fetch_avatar’ ) ) {
    $avatar = bp_core_fetch_avatar( array(
    ‘item_id’ => $id_or_email->user_id,
    ‘type’ => ‘full’,
    ‘html’ => false
    ) );
    }
    return $avatar;
    }
    add_filter( ‘get_avatar’, ‘bp_sync_profile_picture_with_avatar’, 10, 5 );
    Option 2: Use a plugin:
    Install and activate a plugin like “BuddyPress Default Avatar” or “BuddyPress Avatar Sync.” These plugins simplify the process by automatically syncing the BuddyPress profile picture with the WordPress avatar.

    Verify the avatar sync: Log out of your WordPress account and visit your website as a guest or open an incognito/private browsing window. Leave a comment or view your author bio to see if the BuddyPress profile picture is now being used as the WordPress avatar.

    By following these steps, your BuddyPress profile picture should now be synced with your WordPress avatar.

    jgwesterlund
    Participant

    Hello,

    I would like assistance with implementing a functionality for my WordPress website using BuddyPress. I have a private BuddyPress group, and I want to restrict access to only those users who have a valid member number. Each user has a member number, along with their last name, stored in a database.

    I would like to create a mechanism where users requesting to join the group are required to enter their member number. Upon clicking the “Request” button, I want the system to validate the entered member number against my database, which contains two columns: member number and last name. If the user’s last name matches the database entry and the member number is correct, I want their request to be automatically accepted.

    Could someone guide me in the right direction or provide an example of how I can achieve this?

    #329951

    In reply to: Hide pages/content

    shanebp
    Moderator
    Abolfazl Edalati
    Participant

    Hi

    It’s my site https://jobssonnet.com/

    1-I want don’t show the join message in Groups Like this

    2- I want don’t show one Group in Grouptype ( Company ) In Group Page

    Here Fake apple and other Groups in Company Group Type must be hidden

    For Example, if One Group has a Company Group Type hidden in Groups Page

    ( But this group is Global and don’t be Private or hidden, I want Hidden that just in Groups Page )

    3- I want to Make an Activity Like Facebook

    Activity Must Be

    Your Comment in groups + Your Post + Your Groups Comment + and Groups Comment ( Groups you join that )

    #329635
    oliveranthony
    Participant

    BBPress is a WordPress plugin that allows you to add a forum or discussion board to your WordPress website. While it doesn’t come with a built-in private messaging feature, there are a few ways you can add this functionality to your forum:

    Use a plugin: There are several plugins available that allow you to add private messaging to BBPress. One popular option is the “Private Messages For BBPress” plugin, which adds a private messaging system to your forum. You can also check out other plugins that are available in the WordPress repository.

    Use a third-party service: Another option is to integrate a third-party service that offers private messaging. For example, you could use a service like BuddyPress, which offers a range of social networking features, including private messaging. You can integrate BuddyPress with BBPress to add private messaging to your forum.

    Custom development: If you have the technical skills or can hire a developer, you could also develop a custom solution to add private messaging to your forum. This would involve creating a plugin or customizing the BBPress code to add the functionality you need.

    Whichever method you choose, it’s important to consider the security and privacy implications of adding private messaging to your forum. Make sure to implement appropriate security measures to protect user data and prevent spam or abuse.

    #329625
    zoddshop63
    Participant

    I have buddypress installed but how do I integrate its private messaging system with bbppress? I’ve seen some functions.php snippets on google but none them still work.

    #329151
    mike892
    Participant

    In recent years, the concept of a home gym has gained immense popularity. With increasing awareness about health and fitness, having a dedicated workout space at home has become a trend for fitness enthusiasts. A home gym offers several benefits that can greatly impact one’s fitness routine and overall well-being. Let’s delve into some of the key benefits of having a home gym.

    Convenience: One of the primary advantages of having a home gym is the convenience it offers. No more wasting time commuting to a commercial gym or dealing with crowded spaces and waiting for equipment. With a home gym, you have the freedom to exercise whenever you want, without any time constraints. This saves you precious time and allows you to have a flexible workout schedule that fits seamlessly into your daily routine.

    Privacy and Comfort: Many people feel self-conscious about working out in front of others, especially if they are new to fitness or have specific health concerns. Having the best functional trainer for home gym provides a private and comfortable space where you can exercise without any distractions or concerns about others watching you. You can wear whatever you feel comfortable in, crank up your favorite music, and exercise at your own pace, creating a personalized and enjoyable workout environment.

    Personalized Equipment and Setup: When you have a home gym, you have the freedom to choose the equipment that best suits your fitness goals and preferences. You can customize your home gym with the equipment you like, such as cardio machines, weights, resistance bands, yoga mats, etc., and set it up according to your preference and available space. This allows you to create a workout environment that is tailored to your specific needs, helping you achieve your fitness goals more effectively.

    Increased Consistency: Consistency is crucial in any fitness routine. With a home gym, you eliminate the excuses of bad weather, busy schedules, or lack of time to go to a gym. You have the convenience of exercising at home, which makes it easier to maintain a consistent workout routine. This increased consistency can lead to better results in terms of improved fitness, weight management, and overall health.

    Cost-effective: Although setting up a home gym initially requires an investment, in the long run, it can be cost-effective compared to the expenses of a commercial gym membership.
    Resource:
    https://forum.codeigniter.com/member.php?action=profile&uid=73664

    #329036
    scottmotion
    Participant

    Unable to send private message replies. BP v11.1.0, WP v6.2

    Uncaught TypeError: e.has is not a function
    at n.sendReply (buddypress-messages.min.js?ver=11.1.0:1:22353)
    at HTMLDivElement.dispatch (jquery.min.js?ver=3.6.3:2:43184)
    at y.handle (jquery.min.js?ver=3.6.3:2:41168)
    sendReply @ buddypress-messages.min.js?ver=11.1.0:1
    dispatch @ jquery.min.js?ver=3.6.3:2
    y.handle @ jquery.min.js?ver=3.6.3:2

    #328963
    bcreativeaus
    Participant

    ​I can’t delete folders within buddy press.

    Each time I try, the page just refreshes with the fact same message:

    Delete Folder

    You are about to delete the folder delete.

    WARNING: Deleting a folder will also delete all Docs and subfolders in the folder. This action cannot be undone. To preserve your content, remove everything from this folder before deleting it.

    I understand the consequences and wish to continue deleting this folder.

    (Cannot offer any links as it is all private access.)
    Have screenshots if required, or can offer links privately.

    Please help

    Thanks
    B

    #328851
    Lars Henriksen
    Participant

    Thank you for developing BP attachments ! I would like to test it compared to the plugin Activity Plus Reloaded.

    1) Will there be any issues if this add-on moves into BP core? Would it be better to wait for that?

    2) “Please make sure the /nas/content/live/buddypress-private exists and is writeable for the server’s user.” – should i create this folder via ftp – if so, which folder ?

    Thanks,
    Lars

    #328706
    Philippe Roussel
    Participant

    Hi,
    I will need to create private or hidden groups where I am the only one able to invite people.
    Thanks for your help,
    Philippe

    geepers
    Participant

    I expect this is likely a configuration issue with either our BuddyPress installation, a conflict from another plugin (though it works on staging version), or perhaps a lingering cacheing issue. But looking to find assistance resolving it and willing to consider hired help on this.

    No url to share, as it is a member’s only site (Intranet).

    
    ### wp-core ###
    
    version: 6.1.1
    site_language: en_CA
    user_language: en_CA
    timezone: America/Vancouver
    permalink: /%year%/%monthnum%/%day%/%postname%/
    https_status: true
    multisite: false
    user_registration: 0
    blog_public: 0
    default_comment_status: open
    environment_type: production
    user_count: 431
    dotorg_communication: true
    
    ### wp-paths-sizes ###
    
    wordpress_path: /home/susyah/public_html
    wordpress_size: 58.81 MB (61669230 bytes)
    uploads_path: /home/susyah/public_html/wp-content/uploads
    uploads_size: 62.25 MB (65272481 bytes)
    themes_path: /home/susyah/public_html/wp-content/themes
    themes_size: 23.15 MB (24279208 bytes)
    plugins_path: /home/susyah/public_html/wp-content/plugins
    plugins_size: 400.27 MB (419712905 bytes)
    database_size: 96.29 MB (100972517 bytes)
    total_size: 640.78 MB (671906341 bytes)
    
    ### wp-dropins (2) ###
    
    advanced-cache.php: true
    maintenance.php: true
    
    ### wp-active-theme ###
    
    name: Kleo Child (kleo-child)
    version: undefined
    author: SeventhQueen
    author_website: http://seventhqueen.com
    parent_theme: Kleo (kleo)
    theme_features: core-block-patterns, widgets-block-editor, editor-style, automatic-feed-links, post-formats, menus, post-thumbnails, html5, featured-content, title-tag, customize-selective-refresh-widgets, responsive-embeds, kleo-facebook-login, kleo-mega-menu, kleo-menu-items, bbpress, woocommerce, buddypress-use-nouveau, widgets
    theme_path: /home/susyah/public_html/wp-content/themes/kleo-child
    auto_update: Disabled
    
    ### wp-parent-theme ###
    
    name: Kleo (kleo)
    version: 5.1.2
    author: SeventhQueen
    author_website: https://themeforest.net/user/SeventhQueen
    theme_path: /home/susyah/public_html/wp-content/themes/kleo
    auto_update: Disabled
    
    ### wp-themes-inactive (1) ###
    
    Twenty Twenty-Three: version: 1.0, author: the WordPress team, Auto-updates disabled
    
    ### wp-plugins-active (71) ###
    
    Admin Menu Editor Pro: version: 2.18.1, author: Janis Elsts, Auto-updates disabled
    AS Admin Customizer: version: 1.0, author: Andolasoft, Auto-updates disabled
    bbPress: version: 2.6.9, author: The bbPress Contributors, Auto-updates disabled
    bbp style pack: version: 5.4.1, author: Robin Wilson, Auto-updates disabled
    Better Notifications for WP: version: 1.9.2, author: Made with Fuel, Auto-updates disabled
    Big File Uploads: version: 2.1.1, author: Infinite Uploads, Auto-updates disabled
    BP Profile Search: version: 5.4.8, author: Andrea Tarantini, Auto-updates disabled
    Brozzme Multiple Admin Emails: version: 1.4, author: Benoti, Auto-updates disabled
    BuddyPress: version: 11.1.0, author: The BuddyPress Community, Auto-updates disabled
    BuddyPress Notifications Widget: version: 1.3.2, author: BuddyDev, Auto-updates disabled
    Classic Editor: version: 1.6.2, author: WordPress Contributors, Auto-updates disabled
    Display Posts: version: 3.0.2, author: Bill Erickson, Auto-updates disabled
    Document Library Pro: version: 1.9.4, author: Barn2 Plugins, Auto-updates disabled
    Duplicate Page: version: 4.5.1, author: mndpsingh287, Auto-updates disabled
    Envato Market: version: 2.0.8, author: Envato, Auto-updates disabled
    Essential Grid: version: 3.0.16, author: ThemePunch, Auto-updates disabled
    FileBird: version: 5.1.4, author: Ninja Team, Auto-updates disabled
    Force Login: version: 5.6.3, author: Kevin Vess, Auto-updates disabled
    GeoDirectory: version: 2.2.25, author: AyeCode - WordPress Business Directory Plugins, Auto-updates disabled
    Image Upload for BBPress: version: 1.1.18, author: Aspen Grove Studios, Auto-updates disabled
    Jetpack: version: 11.9.1, author: Automattic, Auto-updates disabled
    Jetpack Boost: version: 1.7.0, author: Automattic - Jetpack Site Speed team, Auto-updates disabled
    K Elements: version: 5.1.2, author: SeventhQueen, Auto-updates disabled
    K Fonts: version: 1.1.0, author: SeventhQueen, Auto-updates disabled
    Like Button Rating ♥ LikeBtn: version: 2.6.47, author: LikeBtn, Auto-updates disabled
    List Categories: version: 0.4, author: Fernando Briano, Auto-updates disabled
    MainWP Child: version: 4.4.0.1, author: MainWP, Auto-updates disabled
    Manage Notification E-mails: version: 1.8.4, author: Virgial Berveling, Auto-updates disabled
    Media Sync: version: 1.2.9, author: Erol Živina, Auto-updates disabled
    Meta Box: version: 5.6.17, author: MetaBox.io, Auto-updates disabled
    MonsterInsights - Dimensions Addon: version: 2.0.6, author: MonsterInsights Team, Auto-updates disabled
    MonsterInsights - Forms Tracking Addon: version: 2.2.6, author: MonsterInsights Team, Auto-updates disabled
    MonsterInsights - Media Addon: version: 1.0.7, author: MonsterInsights Team, Auto-updates disabled
    MonsterInsights - Page Insights Addon: version: 1.5.2, author: MonsterInsights Team, Auto-updates disabled
    MonsterInsights Pro: version: 8.13.1, author: MonsterInsights, Auto-updates disabled
    Ninja Forms: version: 3.6.20, author: Saturday Drive, Auto-updates disabled
    Page-list: version: 5.3, author: webvitaly, Auto-updates disabled
    Page scroll to id: version: 1.7.7, author: malihu, Auto-updates disabled
    Pages with category and tag: version: 0.9.0, author: YAHMAN, Auto-updates disabled
    Popup Maker: version: 1.18.1, author: Popup Maker, Auto-updates disabled
    Post Slider For Visual Composer: version: 1.1, author: Nasir, Auto-updates disabled
    PublishPress Permissions: version: 3.8.5, author: PublishPress, Auto-updates disabled
    Redirection: version: 5.3.9, author: John Godley, Auto-updates disabled
    rtMedia for WordPress, BuddyPress and bbPress: version: 4.6.13, author: rtCamp, Auto-updates disabled
    SearchWP: version: 4.2.9, author: SearchWP, Auto-updates disabled
    SearchWP bbPress Integration: version: 1.3.1, author: SearchWP, Auto-updates disabled
    SearchWP Custom Results Order: version: 1.3.6, author: SearchWP, Auto-updates disabled
    SearchWP Live Ajax Search: version: 1.7.4, author: SearchWP, LLC, Auto-updates disabled
    SearchWP Shortcodes: version: 1.8.3, author: SearchWP, Auto-updates disabled
    Shortcode in Menus: version: 3.5.1, author: Gagan Deep Singh, Auto-updates disabled
    Site Plugin for susyah.csfs.org: author: (undefined), version: (undefined), Auto-updates disabled
    Social Articles: version: 2.9.5, author: Broobe, Auto-updates disabled
    SQ Sidebar Generator: version: 1.2.2, author: SeventhQueen, Auto-updates disabled
    TablePress: version: 2.0.4, author: Tobias Bäthge, Auto-updates disabled
    The Events Calendar: version: 6.0.10, author: The Events Calendar, Auto-updates disabled
    The Events Calendar: Community Events: version: 4.10.5, author: The Events Calendar, Auto-updates disabled
    The Events Calendar: Filter Bar: version: 5.4.3, author: The Events Calendar, Auto-updates disabled
    The Events Calendar PRO: version: 6.0.9.2, author: The Events Calendar, Auto-updates disabled
    User Role Editor: version: 4.63.3, author: Vladimir Garagulya, Auto-updates disabled
    User Switching: version: 1.7.0, author: John Blackbourn & contributors, Auto-updates disabled
    UsersWP: version: 1.2.3.11, author: AyeCode Ltd, Auto-updates disabled
    Wbcom Designs - BuddyPress Member Export Import: version: 1.5.0, author: Wbcom Designs, Auto-updates disabled
    When Last Login: version: 1.2.2, author: Yoohoo Plugins, Auto-updates disabled
    WordPress Toolbar Editor: version: 1.4.2, author: Janis Elsts, Auto-updates disabled
    WP Add Mime Types: version: 3.0.3, author: Kimiya Kitani, Auto-updates disabled
    WPBakery Page Builder: version: 6.10.0, author: Michael M - WPBakery.com, Auto-updates disabled
    wpDataTables - Tables & Table Charts: version: 2.1.53, author: TMS-Plugins, Auto-updates disabled
    WP Easy Updates: version: 1.1.20, author: AyeCode Ltd, Auto-updates disabled
    WPForms Lite: version: 1.8.0.2, author: WPForms, Auto-updates disabled
    WP Rocket: version: 3.12.5.3, author: WP Media, Auto-updates disabled
    WP SMS: version: 6.1.1, author: VeronaLabs, Auto-updates disabled
    
    ### wp-plugins-inactive (1) ###
    
    Password Protected Categories: version: 2.1.8, author: Barn2 Plugins, Auto-updates disabled
    
    ### wp-media ###
    
    image_editor: WP_Image_Editor_GD
    imagick_module_version: Not available
    imagemagick_version: Not available
    imagick_version: Not available
    file_uploads: File uploads is turned off
    post_max_size: 128M
    upload_max_filesize: 128M
    max_effective_size: 128 MB
    max_file_uploads: 20
    gd_version: 2.3.3
    gd_formats: GIF, JPEG, PNG, WebP, BMP, XPM
    ghostscript_version: 9.25
    
    ### wp-server ###
    
    server_architecture: Linux 3.10.0-962.3.2.lve1.5.42.el7.x86_64 x86_64
    httpd_software: Apache
    php_version: 7.4.33 64bit
    php_sapi: litespeed
    max_input_variables: 10000
    time_limit: 360
    memory_limit: 2048M
    max_input_time: 360
    upload_max_filesize: 128M
    php_post_max_size: 128M
    curl_version: 7.84.0 OpenSSL/1.1.1p
    suhosin: false
    imagick_availability: false
    pretty_permalinks: true
    htaccess_extra_rules: true
    
    ### wp-database ###
    
    extension: mysqli
    server_version: 5.7.41
    client_version: mysqlnd 7.4.33
    max_allowed_packet: 268435456
    max_connections: 250
    
    ### wp-constants ###
    
    WP_HOME: undefined
    WP_SITEURL: undefined
    WP_CONTENT_DIR: /home/susyah/public_html/wp-content
    WP_PLUGIN_DIR: /home/susyah/public_html/wp-content/plugins
    WP_MEMORY_LIMIT: 1024M
    WP_MAX_MEMORY_LIMIT: 2048M
    WP_DEBUG: false
    WP_DEBUG_DISPLAY: true
    WP_DEBUG_LOG: true
    SCRIPT_DEBUG: true
    WP_CACHE: true
    CONCATENATE_SCRIPTS: undefined
    COMPRESS_SCRIPTS: undefined
    COMPRESS_CSS: undefined
    WP_ENVIRONMENT_TYPE: Undefined
    DB_CHARSET: utf8
    DB_COLLATE: undefined
    
    ### wp-filesystem ###
    
    wordpress: writable
    wp-content: writable
    uploads: writable
    plugins: writable
    themes: writable
    0: Writable
    
    ### jetpack ###
    
    site_id: 212215713
    ssl_cert: No
    time_diff: 2
    version_option: 11.9.1:1678828073
    old_version: 11.9:1678301680
    public: Public
    master_user: #1 ConceptDesign
    current_user: #1 ConceptDesign
    tokens_set: Blog User
    blog_token: P8&fk$QOWUjx^E0IRR3qiHSD*VPExwHg
    user_token: bvJ0#WWGEoaVgl@fq*KX$BqCk5YW7Si1
    version: 11.9.1
    jp_plugin_dir: /home/susyah/public_html/wp-content/plugins/jetpack/
    plan: free
    protect_header: {"trusted_header":"REMOTE_ADDR","segments":1,"reverse":false}
    full_sync: {"started":"Tue, 08 Nov 2022 19:26:26 +0000","finished":"Tue, 08 Nov 2022 19:31:21 +0000","progress":{"comments":{"total":"5","sent":5,"finished":true,"last_sent":"3"},"constants":{"finished":true},"functions":{"finished":true},"options":{"finished":true},"posts":{"total":"3647","sent":3647,"finished":true,"last_sent":"2"},"term_relationships":{"total":"3115","sent":3115,"finished":true,"last_sent":{"object_id":"1","term_taxonomy_id":"270"}},"terms":{"total":"398","sent":398,"finished":true,"last_sent":"1"},"themes":{"finished":true},"updates":{"finished":true},"users":{"total":"83","sent":83,"finished":true,"last_sent":"1"}},"config":{"comments":1,"constants":1,"functions":1,"options":1,"posts":1,"term_relationships":1,"terms":1,"themes":1,"updates":1,"users":1}}
    sync_size: undefined
    sync_lag: 0 seconds
    full_sync_size: undefined
    full_sync_lag: 0 seconds
    idc_urls: {"home":"https:\/\/susyah.csfs.org","siteurl":"https:\/\/susyah.csfs.org","WP_HOME":"","WP_SITEURL":""}
    idc_error_option: false
    idc_optin: true
    cxn_tests: All Pass.
    
    ### buddypress ###
    
    version: 11.1.0
    active_components: Community Members, Extended Profiles, Account Settings, Friend Connections, Private Messaging, Activity Streams, Notifications, User Groups
    template_pack: BuddyPress Nouveau 11.1.0
    ! hide-loggedout-adminbar: No
    ! bp-disable-account-deletion: No
    ! bp-disable-avatar-uploads: Yes
    ! bp-disable-cover-image-uploads: Yes
    bp-enable-members-invitations: No
    bp-enable-membership-requests: No
    ! bp-disable-profile-sync: Yes
    ! bp_restrict_group_creation: No
    ! bp-disable-group-avatar-uploads: Yes
    ! bp-disable-group-cover-image-uploads: Yes
    ! bp-disable-blogforum-comments: Yes
    _bp_enable_heartbeat_refresh: Yes
    
    ### redux-framework ###
    
    version: 4.3.12
    installation: in_plugin
    data directory: /home/susyah/public_html/wp-content/plugins/k-elements/lib/options/
    browser: 
    	Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:109.0) Gecko/20100101 Firefox/112.0
    	Browser: Firefox
    	Version: 112.0
    	Platform: Apple
    
    ### redux-instance-kleo_kleo_child ###
    
    opt_name: kleo_kleo_child
    global_variable: false
    dev_mode: false
    ajax_save: false
    page_slug: kleo_options
    page_permissions: manage_options
    menu_type: menu
    page_parent: themes.php
    compiler: false
    output: false
    output_tag: true
    templates_path: undefined
    extensions: 
    	Customizer: 4.0.0
    	Import Export: 4.0.0
    	Metaboxes: 4.0.0
    	Options Object: 4.0.0
    	Repeater: 4.3.7
    	Search: 3.4.5
    	Shortcodes: 4.3.5
    
    ### wpforms ###
    
    version: 1.8.0.2
    lite: Nov 14, 2022 @ 5:41pm
    upload_dir: Writable
    total_forms: undefined
    total_submissions: undefined
    
    ### bp-profile-search ###
    
    version: 5.4.8
    platform: BuddyPress 11.1.0
    theme: Kleo Child 
    index: /plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/index.php
    loop: /plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/members-loop.php
    template0: /themes/kleo/buddypress-nouveau/members/bps-form-legacy.php
    template1: /themes/kleo/buddypress-nouveau/members/bps-form-inline.php
    template2: /themes/kleo/buddypress-nouveau/members/bps-form-with-labels.php
    
    
    #328524
    christy359
    Participant

    Hello gm
    we are waiting for updates please reply me privately Nexus Iceland App

    #328495
    m1000
    Participant

    When I use special characters like &&& then it displays html entities, it happens to all default WP themes

    Private message

    #328444

    Topic: Group settings

    in group forum Installing BuddyPress
    swietcher
    Participant

    Hello, I am building a training site. I want to create a private group with Buddypress and I want only those who bought the training to be able to join the group I created. How can I do that? I don’t want everyone to be able to join my group. Also, when people want to share on the main page, that is, in the flow, I want them to be approved by me. How can I do that?

Viewing 25 results - 76 through 100 (of 3,870 total)
Skip to toolbar