Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Matheo,
    Thank you for using our plugin.

    The problem is coming from the shortcode. Do you know if the shortcode allows you to pass user id to show the points for them? If yes, Our plugin can help you with it.

    Also, I am not seeing any purchase from your account. If you purchased from another account or doing it for a client, Please share the order id to allow me assist you further.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Blake,
    Thank you for using the plugin.

    At the moment,t there is no direct answer to that.

    If you are ok with modifying via database query, I can supply the code(will need to know your user meta table name with prefix).

    Please note that this approach will reset other user’s current preference too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] in ‘Auto Join Groups’ #38390

    Hi Vivien,
    Thank you for the question.

    It will be available in next 12-16 weeks.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Nicholas,
    Thank you for the reply.

    here is the list of hooks fired.

    For submission.

    
    do_action( 'bblpro_post_submitted', $post_id, $form_id, $post_data );
    
    

    for update

    
    do_action( 'bblpro_post_updated', $post_id, $form_id, $post_data );
    
    

    So, you can use any of the above.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Alexis,
    Thank you.

    Yes, all our plugins are compatible unless they are marked as “Discontinued”. Eeven if the last update date is old, that simply means the plugin did not need any update recently.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Carsten,

    1. Community Builder 2.x theme will not work with Nouveau template pack.
    2. I am not sure what hooks you are referring too, Please take a look at Community Builder pro demo to see if the pro version suits your need.

    There is not much difference between free/pro except the customizations and some pro specific plugins.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] tags are removed from tab content #38376

    Hi Jeremy,
    Thank you.

    Please check now.

    Your problem was this line in your functions.php

    
    function disable_wp_auto_p( $content ) {
      if ( is_singular( 'page' ) ) {
        remove_filter( 'the_content', 'wpautop' );
        remove_filter( 'the_excerpt', 'wpautop' );
      }
      return $content;
    }
    add_filter( 'the_content', 'disable_wp_auto_p', 0 );
    
    

    BuddyBoss/BuddyPress treats Group/User page as single page too. My previous code was aimed at user profile tabs. I updated it in your child theme’s functions.php with the following code.

    
    
    function disable_wp_auto_p( $content ) {
    	$is_group_page = function_exists( 'bp_is_group' ) && bp_is_group();
    
    	if ( ! $is_group_page && is_singular( 'page' ) ) {
    		remove_filter( 'the_content', 'wpautop' );
    		remove_filter( 'the_excerpt', 'wpautop' );
    	}
    
    	return $content;
    }
    
    add_filter( 'the_content', 'disable_wp_auto_p', 0 );
    
    

    That fixed it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490
    Brajesh Singh on in reply to: [Resolved] Two panel menus, one is empty #38375

    Hi Carsten,
    Thank you.

    I am glad it is resolved.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25490

    Hi Alexis,
    Thank you for the question.

    yes, you do. BuddyPress does not have live notifications available.

    Regards
    Brajesh