Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 1,201 through 1,225 (of 69,016 total)
  • Author
    Search Results
  • #330280
    thejacs
    Participant

    The notifications Js code of the plugin doesn’t look to work properly with BuddyPress // bp-em-notifications.php

    I’ve done my own Js code and it works. If anybody needs help with this, just let me know.

    #330276
    freedans
    Participant

    After extensively researching this same topic, I found this:

    BuddyPress

    It seems to be the only booking plugin on the market right now that explicitly supports Buddypress. Has anyone used WP Base with Buddypress integration? Did it meet your needs?

    #330264
    freedans
    Participant

    I wrote a function to return popular users with relatively little difficulty, following existing documentation. I still cannot find any info on how ‘popular’ sorting works in Buddypress, though. Is it based on visits? Engagement on profile activity? There are so many different ways that one could determine ‘popularity.’

    I’m looking for specifics, so I can determine if this method of sorting is suitable to my needs. I’d also really like to know if it’s possible to calculate ‘popularity,’ however that’s determined, over time. Does anyone have info on this?

    #330239
    maciejatmyshca
    Participant

    Hello, I would really appreciate it to get support on this issue. Are any BuddyPress plugin developers available to advise please?

    #330233
    freedans
    Participant

    Hello,

    I am just getting my toes into BuddyPress’ documentation, and came across the ‘popular’ user type in BP_User_Query.

    I have no idea how ‘popular’ users are defined in BuddyPress. My questions are as follows:

    1. How is the ‘popular’ user type defined and sorted in BuddyPress?
    2. If ‘popular’ users are calculated across a period of time, could one theoretically sort users into ‘most popular by day, week, month, etc.’?
    3. The documentation recommends bp_parse_args() for filtering members. What would a simple function to return popular users using bp_parse_args() look like?

    #330230

    In reply to: BP page not found

    aymericfb
    Participant

    Hello, thank you for your answer but you have trouble reading my post… I know how to create the pages, that’s no problem, but when I create them and I click on the link of the page to assign in the settings of BuddyPress, it shows me a critical error or simply redirects me to my 404 page. I don’t understand where the problem comes from ☹️

    #330180
    Venutius
    Moderator

    If you want to create a booking system on your WordPress website that integrates with BuddyPress, you have several options to choose from. One of them is Appointment Scheduling and Booking Manager, which is a plugin that allows your members to manage their appointments on your BuddyPress-powered community website. This plugin lets you create unlimited services, calendars, locations and providers, and supports PayPal and Stripe payment gateways. You can also customize the booking form fields, set seasonal working hours, send reminder and follow-up emails, and more.

    Another option is BookingPress, which is a plugin that allows you to set up a complete booking system according to your requirements on your WordPress website. This plugin is suitable for any business or individual who wants to manage their appointment scheduling online. You can create unlimited booking forms, calendars and categories, and configure different settings for each of them. You can also enable online payments, sync with Google Calendar, send email notifications, and more.

    #330176
    imagine2006
    Participant

    I did a search of previous posts and none of them were helpful and were from so many years ago. I’m really hoping there is an up to date solution.
    I am looking for a plugin that will integrate with Buddypress allowing visitors to book and/or see a person’s availability on a calendar. There are so many booking plugins I have used in the past but have no idea how they could integrate with buddypress.
    If this is impossible then at least I would like the user/member to be able to display a calendar on their profile where they could manually enter booked dates and times.

    gilldart
    Participant

    Hi,

    I have a Custom Post Type ‘golfs’ created with CPT UI.
    I try to get the golfs comments (activated) in the Activites feed of BuddyPress without success…

    I put the code i found here ( https://codex.buddypress.org/plugindev/post-types-activities/ ) in my bp-custom.php file :

    function customize_page_tracking_args() {
        // Check if the Activity component is active before using it.
        if ( ! bp_is_active( 'activity' ) ) {
            return;
        }
     
        // Don't forget to add the 'buddypress-activity' support!
        add_post_type_support( 'golfs', 'buddypress-activity' );
     
        /**
         * Also don't forget to allow comments from the WordPress Edit Page screen
         * see this screencap https://cldup.com/nsl4TxBV_j.png
         */
     
        bp_activity_set_post_type_tracking_args( 'golfs', array(
            'action_id'                         => 'new_blog_page',
            'bp_activity_admin_filter'          => __( 'Published a new page', 'custom-textdomain' ),
            'bp_activity_front_filter'          => __( 'Page', 'custom-textdomain' ),
            'bp_activity_new_post'              => __( '%1$s posted a new <a href="%2$s">page</a>', 'custom-textdomain' ),
            'bp_activity_new_post_ms'           => __( '%1$s posted a new <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ),
            'contexts'                          => array( 'activity', 'member' ),
            'comment_action_id'                 => 'new_blog_page_comment',
            'bp_activity_comments_admin_filter' => __( 'Commented a page', 'custom-textdomain' ),
            'bp_activity_comments_front_filter' => __( 'Pages Comments', 'custom-textdomain' ),
            'bp_activity_new_comment'           => __( '%1$s commented on the <a href="%2$s">page</a>', 'custom-textdomain' ),
            'bp_activity_new_comment_ms'        => __( '%1$s commented on the <a href="%2$s">page</a>, on the site %3$s', 'custom-textdomain' ),
            'position'                          => 100,
        ) );
    }
    add_action( 'bp_init', 'customize_page_tracking_args' );

    New golfs are displayed in the activities feed but not the new comment.

    Can anybody tell me what’s wrong ?

    WP 6.2.2
    BuddyPress 11.2.0
    PHP 7.4

    Thank’s in advance
    Gil

    pedropella
    Participant

    Está ocorrendo um erro crítico no meu site, algo sobre um problema no código BP-CORE e a ausência de um plugin para Cache de Objetos Persistentes.

    A informação é exibida na página de diagnóstico, e eu preciso de ajuda para resolver.

    Desde já obrigado pela atenção!

    shaguftashamid6
    Participant

    To hide expired Paid Memberships Pro (PMP) members from the Buddypress members list, you can utilize custom code by adding a filter to modify the read query that retrieves the members. Here’s a general outline of the steps you can follow:

    Create a child theme: If you haven’t already, create a child theme for your Buddypress-enabled WordPress website of . This allows you to add custom code without modifying the parent theme files directly.

    Locate the functions.php file: In your child theme, locate the functions.php file. If it doesn’t exist, create a new one.

    catchybaseball
    Participant

    Hi,

    Our service image
    We would like to match amateur baseball team games. As an example, there would be multiple applications for a specific game, and the recruiter would select one and match it.
    In addition, we would like to add functions for recruiting new team members and helpers as well.

    We are currently creating a matching site using HivePress (https://hivepress.io/).

    I would like to give HivePress the BuddyPress group/member functionality, please let me know how(integration with BuddyPress).

    odinwynd
    Participant

    Hello,

    I have isolated an issue that causes Buddypress’s Dynamic blocks to fail to load.

    Step one. Have Neve Theme and Buddypress installed, and place Dynamic Members and Dynamic Groups blocks on a Page.

    Step two. Verify they work with sample members and groups.

    Step three. Install Gamipress and reload the page that was working previously.

    Errors:
    Dynamic Members:

    Uncaught TypeError: Cannot read properties of null (reading ‘closest’)
    at dynamic-members.js?ver=11.2.0:2:1081
    at Array.forEach (<anonymous>)
    at r.start (dynamic-members.js?ver=11.2.0:2:992)
    at parcelRequire.k5We (dynamic-members.js?ver=11.2.0:2:1647)
    at f (dynamic-members.js?ver=11.2.0:1:468)
    at parcelRequire.k5We (dynamic-members.js?ver=11.2.0:1:771)
    at dynamic-members.js?ver=11.2.0:1:1023

    Dynamic Groups:

    dynamic-groups.js?ver=11.2.0:1 Uncaught TypeError: Cannot read properties of null (reading ‘closest’)
    at dynamic-groups.js?ver=11.2.0:2:1053
    at Array.forEach (<anonymous>)
    at r.start (dynamic-groups.js?ver=11.2.0:2:964)
    at parcelRequire.UOvc (dynamic-groups.js?ver=11.2.0:2:1617)
    at f (dynamic-groups.js?ver=11.2.0:1:468)
    at parcelRequire.UOvc (dynamic-groups.js?ver=11.2.0:1:771)
    at dynamic-groups.js?ver=11.2.0:1:1023

    Any help is appreciated, I will pass this along to Neve’s developer. I have already reached out to Gamipress.

    Thanks,

    HP Odin

    #330127
    NAROLLES
    Participant

    Hello thank you @alwaysalready et @vapvarun
    Your solution is still useful for me.
    This allows me to have my buddypress emails sent through the Mailpoet plugin configuration (3rd party smtp Sendgrid)
    the noreply part cannot be applied since it takes the from configuration of Mailpoet
    Thanks again, maybe Buddypress could simplify this Thanks to the experts

    #330120
    atiq97
    Participant

    Hello Everyone, I hope you all guys are doing good.

    i want to make buddypress name field not required. I activated extended profile but still I don’t see any option to make the field optional.

    I tried custom code for the field id ( field_1 ) but no success.

    Any help?

    Using WordPress and Buddypress with latest version.

    #330110

    In reply to: Remove toolbar

    gregec
    Participant

    In BuddyPress settings under main menu, toolbar, I unchecked “show toolbar for logged out users”, but it still shows up if they are logged in. I can’t find anywhere else to remove it.

    #330109

    In reply to: Remove toolbar

    Venutius
    Moderator

    You can remove it in the Buddypress settings, go to the backend, in the settings menu, click on Buddypress

    #330108
    gregec
    Participant

    I am using WordPress version: 6.2.2
    I am using BuddyPress version: 11.2.0
    My website is https://entertainerdrivers.com/
    I installed Buddypress and set everything up via watching a WPtutorial video. After I set everything up I created a dummy account, to see how everything functioned on something other than my admin account. My issue is the toolbar at the top. Users can click on the wordpress icon, on the left side and get to my wordpress details. How do I not allow this? I have disabled all of the buddypress pages until I can sort this out.

    #330068
    missyoung
    Participant

    Hi,
    I have a new site with a “Member” only chat. Since the chat isn’t open to the public, the invites aren’t being delivered. Invites only work when I select “anyone can register” in the general settings. This site is for people with a rare disease and don’t want their stories public. Can I have a closed chat AND have the ability for members to invite eachother to the new chat.

    I am using Buddypress 11.2.0
    and WordPress 6.2

    I am not a programmer and need a simple solution.

    pewpew41
    Participant

    Hi all,

    I’ve set up Paid Memberships Pro and Buddypress and have a code snippet in place to store latitude and longitude user meta from a member’s PMP billing address. I would like Buddypress to use this user meta to geolocate for each member and allow the members directory to be filtered by location – how can I achieve this?

    pewpew41
    Participant

    Hi all,

    I’m setting up Buddypress’ Member Directory with Paid Memberships Pro and am wondering if there is a way to exclude expired/cancelled Paid Memberships Pro members from Buddypress’ Member Directory?

    #330040
    vincenz17
    Participant

    I found the problem.
    I use relative URLs because I need 3 domains for my website.
    In my wp-config.php I added this line. All plugins and wordpress itself are able to work with that, Buddypress is crashing 🙁

    define(‘WP_CONTENT_URL’ , ‘/wp-content’);

    Is there a way to use that with multiple domains?

    Thanks!

    #329988
    rbeverly
    Participant

    I use WordPress for my company’s local intranet. I have been using the Birthdays widget for a couple years… one setup for employee birthdays and one for work anniversaries. The IT Dept recently upgraded our server and now it shows the birthdays and anniversaries started on January 1 and not from the current date. Any ideas on how to fix this??

    Wordpress 6.2.2
    BuddyPress 11.2.0

    #329985
    eluyawi
    Participant

    What is the difference between the type of Members vs. Groups.

    Let me explain my context:

    I have two LearnDash courses(CourseA and CourseB), I would like to show all enrolled students of each course. Buddypress has the members section where it shows all members (courseA members + courseB members).

    For example:

    CourseA: I want to show all students enrolled in CourseA.
    StudentA
    StudentB
    StudentC

    CourseB: I want to show all students enrolled in CourseB
    StudentD
    StudentE
    StudentC

    How can that be done with BuddyPress, do you have any ideas?

    Thanks

    #329944

    In reply to: Hide pages/content

    Anonymous User 18187419
    Inactive

    This might work for you, it will restrict non-loggedin from accessing user profiles & members page.
    Change the redirect URL as appropriate.

    
    function michael_bp_not_loggedin_redirect() {
         global $bp;
         if ( is_buddypress() or bp_is_user() ) {
         if ( !is_user_logged_in() and !bp_is_register_page() and !bp_is_activation_page() ) {
          wp_redirect('https://yourwebsite/wp-login.php');
          exit;
          }
          }
    }
    add_filter( 'get_header' , 'michael_bp_not_loggedin_redirect',1 );
    
    

    If you also want to restrict bbpress, then change the third line to:

    
    if ( is_buddypress() or bp_is_user() or is_bbpress() ) {
    
Viewing 25 results - 1,201 through 1,225 (of 69,016 total)
Skip to toolbar