Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 76 through 100 (of 772 total)
  • Author
    Search Results
  • ocastaned
    Participant

    Does anybody have an idea on how to sort courses on course page to “just added” or new courses?

    I don’t know who thought it was a good idea sorting courses alphabetically…

    ellain3gab
    Participant

    I have now uninstalled the Buddypress plugin because we had a hiccup last week.

    What happened was when I installed Buddypress and set the other things from Memberpress documentation, I did not know what triggered the cause of the mass email sent to our members saying that they changed their passwords when in fact they didn’t.

    All I did with the plugin was use the default values so I’m not sure what ticked off the mistake of sending all those emails.

    I need help with regards to Buddypress (Buddyboss) and Memberpress pro bugs or incompatilibity.

    #324012
    augmedsim
    Participant

    What in the world is going on? I can’t activate it and I can’t delete BuddyPress! Its a new site, so there isn’t any data, just a bare BuddyBoss site being built. I uploaded the BuddyPress plugin, and when I could not activate it, I thought I’d delete it and try again, but alas no joy. What is going on here???

    #324001
    shanebp
    Moderator

    These are the forums for BuddyPRESS.
    You could ask BuddyBoss about it.
    Even better – contact the creators of the Conditional Profile Fields plugin.

    #324000
    brhoom
    Participant

    I have created “Professional Experience” repeater field set and inside it I created :

    • current job (yes or no)
    • end date (date) hide when current job is yes

    The issue is when I edit the profile the end date hid only in the first field not working on other fields. Also, it’s not working at all when I view the profile.
    Does anyone have a solution, please?

    BuddyBoss Platform Pro v 1.2.0
    Conditional Profile Fields for BuddyPress v 1.2.5
    BuddyBoss Theme v 1.8.7

    Nitin I.
    Participant

    Hi ,

    Please help me with this, I am stuck here,

    After the user enters details for registration and after clicking ” Create Account” button on registration form, a new window pops up saying ” Before you can login, you need to confirm your email address via the email we just sent to you”. Here the font colour is white with white background so not visible. I wish to change the font colour appearing in this popup window.

    Plateform Buddyboss

    Thank you

    #323948

    In reply to: Database Errors

    shanebp
    Moderator

    Legacy is still supported, but most if not all 3rd party plugins assume the use of Nouveau, especially if they also support BuddyBoss.
    And Nouveau is better in many aspects – but if you’re happy with Legacy…

    #323937
    shanebp
    Moderator

    You are using BuddyBoss – these are the forums for BuddyPress.
    Ask your question on the Facebook page for BuddyBoss Community.

    #323909

    In reply to: Get group ID from slug

    resortstylebeanbags
    Participant

    I have set up an Advanced Custom Field that is linked to the event, and the admin sets the group that the user should be added to on registration for the event. The field is called event_sub_group and it returns a WP_Post object. From that, I can get the slug of the group in the post_name. I was then trying to get the group ID using the slug, so I can add the user to the group. This is my current code.

    /Add user to buddyboss group when they register for an event
    function ofc_add_registrant_to_group($registration, $old_STS_ID, $new_STS_ID, $context) {
      
       global $bp, $wpdb;
    
       $user_id = get_current_user_id();
    
       if (! $registration instanceof EE_Registration ) {
            // No EE_Registration, get out
            return;
        }
       
        $event_id = $registration->event_ID();
        $subgroups = get_field('event_sub_group', $event_id);
        $slug = $subgroups[0]->post_name;
        
        $group_id = BP_Groups_Group::group_exists( $slug );
                 
       if ( ! groups_is_user_member($user_id, $group_id )) {
            $bp->groups->current_group = groups_get_group(array('group_id' => $group_id));
            groups_join_group($group_id, $user_id);
        }
    }
    add_action('AHEE__EE_Registration__set_status__to_approved', 'ofc_add_registrant_to_group', 10, 4); 

    BP_Groups_Group::group_exists( $slug ) returns nothing. If I use BP_Groups_Group::check_slug( $slug ) – it returns the correct slug name as expected.

    #323879
    anjanphukan
    Participant

    I am using BP_User_Query and BP_Xprofile_Queury with the following code and it worked for me now.

    $xprofile_query = array( 'relation' => 'OR');
    	
    foreach ($my_items as $key => $value) {
    	$xprofile_query[] = array( 
    		'key'=> $fieldID, 
    		'value' => $value,
    		'compare' => 'LIKE' 
    	);
    }
    		
    $args = array(
    	'member_type' => 'donor',
    );
    	
    if ($xprofile_query){
            $args['xprofile_query'] = $xprofile_query;
    }
    	 
    $user_query = new BP_User_Query( $args );

    Thank you.

    #323843
    freya
    Participant

    Hello,
    I work on a Buddyboss setup. I created a profile subnav (like ‘edit profile’ and ‘change photo’).
    The only thing is I don’t know which template to load in my last line of code for the content to look like a settings page.

    Here is my working code:

    function buddyboss_custom_user_subtab() {
    
    	// Avoid fatal errors when plugin is not available.
    	if ( ! function_exists( 'bp_core_new_nav_item' ) ||
    		 ! function_exists( 'bp_loggedin_user_domain' ) ||
    		 empty( get_current_user_id() ) ) {
    
    		return;
    
    	  }
    
      	global $bp;
    
      	$args = array();
    
      	// Tab 1 arg.
      	$args[] = array(
    		'name'                => esc_html__( 'Link Social Accounts', 'default' ),
    		'slug'                => 'connect-socials',
    		'screen_function'     => 'connect_socials',
    		'position'            => 100,
    		'parent_url'          => bp_loggedin_user_domain() . 'profile/',
    		'parent_slug'         => $bp->profile->slug,
    	);
    
    	foreach ( $args as $arg ) {
    		bp_core_new_subnav_item( $arg );
    	}
    }
    
    add_action( 'bp_setup_nav', 'buddyboss_custom_user_subtab' );
    
    /* Display content of custom tab. */
    function connect_socials() {
    	add_action( 'bp_template_title', 'connect_socials_title' );
    	add_action( 'bp_template_content', 'connect_socials_content' );
    	bp_core_load_template( apply_filters( ????????????? ) );
    }
    
    /* Display content of custom tab. */
    function connect_socials_title() {
    	echo esc_html__( 'Custom Tab', 'default' );
    }

    Here is the output: https://ibb.co/58Y2WDy on the tabs part, but when I select the tab ‘Link Social Account’, the tempate isn’t the right one no matter what I try.

    Thank you for your help!

    #323394

    In reply to: How to use bp hooks?

    shanebp
    Moderator

    There is already a filter with that name:
    apply_filters( 'bp_members_signup_error_message', '<div class="error">' . $error_message . '</div>' );
    It passes only one argument. You need to write a custom filter hook with a different name.

    also – these are the forums for BuddyPress.
    Please contact BuddyBoss for questions specific to their codebase.
    This thread is now closed.

    #323383

    In reply to: How to use bp hooks?

    savantking99
    Participant

    that is my own function: line 48.

    and this is the doucumentation from buddyboss:

    apply_filters( 'bp_members_signup_error_message', string $value, string $fieldname )

    So I pass two arguments.

    #323381

    In reply to: How to use bp hooks?

    shanebp
    Moderator

    You need to look at themes\buddyboss-theme-child\functions.php : Line 48 to see what arguments are passed in the filter hook and then change your function to include all those arguments.
    And the ‘2’ in
    add_filter( 'bp_members_signup_error_message', 'function_voornaam', 10, 2 );
    needs to equal the number of arguments passed in the filter hook.

    #323379

    In reply to: How to use bp hooks?

    savantking99
    Participant

    thank you. But then I get this error:

    
    Fatal error: Uncaught ArgumentCountError: Too few arguments to function function_voornaam(), 1 passed in E:\Xampp\htdocs\wordpress\wp-includes\class-wp-hook.php on line 303 and exactly 2 expected in E:\Xampp\htdocs\wordpress\wp-content\themes\buddyboss-theme-child\functions.php:48 Stack trace: #0 E:\Xampp\htdocs\wordpress\wp-includes\class-wp-hook.php(303): function_voornaam('show_messagge') #1 E:\Xampp\htdocs\wordpress\wp-includes\plugin.php(189): WP_Hook->apply_filters('show_messagge', Array) #2 E:\Xampp\htdocs\wordpress\wp-content\themes\buddyboss-theme-child\functions.php(66): apply_filters('bp_members_sign...', 'show_messagge') #3 E:\Xampp\htdocs\wordpress\wp-settings.php(546): include('E:\\Xampp\\htdocs...') #4 E:\Xampp\htdocs\wordpress\wp-config.php(97): require_once('E:\\Xampp\\htdocs...') #5 E:\Xampp\htdocs\wordpress\wp-load.php(50): require_once('E:\\Xampp\\htdocs...') #6 E:\Xampp\htdocs\wordpress\wp-blog-header.php(13): require_once('E:\\Xampp\\htdocs...') #7 E:\Xampp\htdocs\wordpress\index.php(17): require('E:\\Xampp\\htdocs...') #8 {main} thrown in E:\Xampp\htdocs\wordpress\wp-content\themes\buddyboss-theme-child\functions.php on line 48
    
    #323375

    In reply to: How to use bp hooks?

    savantking99
    Participant

    Yes, I have done that. So the complete code is then like this:

    add_filter('bp_members_signup_error_message', 'function_voornaam');
    
    function function_voornaam($value,  $fieldname)
    {
    
        if ($fieldname == 'field_1') {
    
            return '<style>{font-family:bold}</style>  you have to enter name.';
        }
    }

    But then I get this error:

    
    atal error: Uncaught ArgumentCountError: Too few arguments to function function_voornaam(), 1 passed in E:\Xampp\htdocs\wordpress\wp-includes\class-wp-hook.php on line 303 and exactly 2 expected in E:\Xampp\htdocs\wordpress\wp-content\themes\buddyboss-theme-child\functions.php:49 Stack trace: #0 E:\Xampp\htdocs\wordpress\wp-includes\class-wp-hook.php(303): function_voornaam('show_messagge') #1 E:\Xampp\htdocs\wordpress\wp-includes\plugin.php(189): WP_Hook->apply_filters('show_messagge', Array) #2 E:\Xampp\htdocs\wordpress\wp-content\themes\buddyboss-theme-child\functions.php(68): apply_filters('bp_members_sign...', 'show_messagge') #3 E:\Xampp\htdocs\wordpress\wp-settings.php(546): include('E:\\Xampp\\htdocs...') #4 E:\Xampp\htdocs\wordpress\wp-config.php(97): require_once('E:\\Xampp\\htdocs...') #5 E:\Xampp\htdocs\wordpress\wp-load.php(50): require_once('E:\\Xampp\\htdocs...') #6 E:\Xampp\htdocs\wordpress\wp-blog-header.php(13): require_once('E:\\Xampp\\htdocs...') #7 E:\Xampp\htdocs\wordpress\index.php(17): require('E:\\Xampp\\htdocs...') #8 {main} thrown in E:\Xampp\htdocs\wordpress\wp-content\themes\buddyboss-theme-child\functions.php on line 49
    
    sx1001
    Participant

    Funny, just as I posted, I saw this on github:
    https://github.com/buddyboss/buddyboss-platform/issues/1199

    But this was created only concerning the REST API.
    This happens also directly in the frontend… We have this situation every week once or so … ๐Ÿ™

    #322808
    shanebp
    Moderator

    BuddyBoss is a fork of BuddyPress. The respective codebases have diverged, as all forks do.
    If you are using BuddyBoss – you should use their support ticket system.

    #322807
    bikerflyeradmin
    Participant

    I have been trying to figure this out for quite some time. I really do not understand who, if anybody, would want to destroy every image uploaded to a website. It seems everyone would want nice images. I am running buddyboss, which is built on buddypress, and even the images uploaded to activity feed are absolutely destroyed. Changing wordpress compression quality does nothing. I makes absolutley no sense whatsoever.

    wackao
    Participant

    It would be a mix of BuddyPress and BBPress. The main challenge is that it has to be fast, without page loads. We already have the PWA framework on BuddyPress and are releasing new themes. Built on ReactJS , HeadLess Social network, super fast community framework. [ See video : https://www.youtube.com/watch?v=lLDs4Ue1vzU ]

    Current BuddyBoss is legacy just like Buddypress. Working with Ajax calls , jQuery.

    prankster101
    Participant

    How easy is it to create a Reddit style site using WordPress / BuddyPress?

    Has anyone done this? What sort of effort is involved?

    Is it better to go with a more commercial solution like BuddyBoss, and look towards customizing that, or would you stick with vanilla BuddyPress?

    Thanks in advance.

    #322534
    wackao
    Participant

    This is BuddyPress, kindly seek support from BuddyBoss on it ๐Ÿ™‚ or simply migrate to BuddyPress

    #322519
    elysian21
    Participant

    Hi guys,

    I was wondering if someone can tell me how to allow an editor profile to deal with pending signups of buddyboss.

    When using adminimize or any other plugin, the signups and/or users are not showing in the dashboard of the editor.

    Best,

    #322493
    ibrar505
    Participant

    Hello,

    I would like to know if this is possible in Buddypress/Buddyboss.

    in the activity feed i can tag someone like @[username]. i also want to tag groups like @[group name]. will this be possible? any direction toward it would be very helpful.

    best regards,
    Ibrar

    #322461
    mounir0014
    Participant

    @wackao thanks for your response, i found where “Public” keyword comming from “..\wp-content\plugins\buddyboss-platform\bp-activity\classes\class-bp-activity-component.php” i want just override it and remove “public” option !

Viewing 25 results - 76 through 100 (of 772 total)
Skip to toolbar