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: 25486
    Brajesh Singh on in reply to: MediaPress Media Moderator with Buddy #47646

    Hi Alex,
    I am sorry for the delay.

    Thank you for sharing the details. It is looking like quiet comprehensive plugin.

    There are 2 ways we offer for custom plugins. If the plugin is general enough and may add value to our members, we offer discounted rate.

    It is like you sponsor certain number of hours and we take care of the development beyond that and keep the plugin available/updated for future.

    The second option is if we have available slot, you pay us by our hourly rate( USD $100/hour) and we develop it for you and you are free to do whatever you like.

    The choice is yours.

    Please let me know which one suits your needs? Will you like me to continue our discussion over email( I have received your email via contact form).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: BuddyPress Auto Activate Auto Login dont work #47645

    Hi Alfredo,
    Thank you for the update.
    I see, the Registration form(modal box) is not the default BuddyPress registration form.
    Are you using any custom plugin to have that modal box or does it come with the theme ?

    I will need access to the theme and add support for it in couple of hours if it comes with theme.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Peter,
    I am sorry, it has been around 8 weeks and I haven’t been able to find free time to dedicate on this one.

    As of the date field, that is a BuddyBoss problem and you will need help from them.

    If you have got a developer, you might get the conditional registration feature extracted from our Member Types pro(I will be glad to offer a free copy) and have it in the plugin.

    At the moments, I am unable to work on it as it will need a possible rewrite and I lack that much time.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi,
    Here is your code.

    Please feel free to modify as you need

    
    <?php
    /**
     * Shows followers count of the given user or the author of current post if used inside a post
     *
     * Use: [bb-followers-count]
     * Optional user_id=numeric user id. It will use post author if not specified.
     */
    function bbf_followers_count_shortcode( $atts = array() ) {
    	if ( ! class_exists( 'BP_Activity_Follow' ) ) {
    		return '';
    	}
    
    	$atts = shortcode_atts( array(
    		'user_id' => 0,
    	), $atts, 'bb-followers-count' );
    
    	if ( $atts['user_id'] ) {
    		$user_id = absint( $atts['user_id'] );
    	} elseif ( in_the_loop() ) {
    		$user_id = get_post( get_the_ID() )->post_author;
    	}
    
    	if ( empty( $user_id ) ) {
    		return '';
    	}
    
    	$counts = BP_Activity_Follow::get_counts( $user_id );
    
    	return $counts['followers'];
    }
    
    add_shortcode( 'bb-followers-count', 'bbf_followers_count_shortcode' );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Kishan,
    Please visit Group->Manage->Settings and you will see the option to turn on/off for the discussion.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Vitor,
    Looks good.

    You may simplify it like this

    
    <?php
    /**
     * Template part for displaying posts
     *
     * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
     *
     * @package BuddyBoss_Theme
     */
    ?>
    
    <?php 
    global $post;
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
        
    <?php echo do_shortcode( '[elementor-template id="931"]' ); ?>
        
    	<div class="entry-content-wrap">
            <div class="post-actions">
    			<?php echo bblpro_get_post_edit_link( get_the_ID() ); ?>
    			<?php echo bblpro_get_post_delete_link( get_the_ID() ); ?>
            </div>
    	</div>
    
    </article><!-- #post-<?php the_ID(); ?> -->
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    You are welcome!

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Kishan,
    Thank you for the question.

    The plugin does not allow you to enable Discussion(forums) option.

    The discussions can be turned on/off in your group settings. That is default feature of BuddyBoss.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: BuddyPress Auto Activate Auto Login dont work #47628

    Hi Alfredo,
    I am sorry for the inconvenience.

    The video is not accessible as it is marked private. can you please mark it public for us to check?

    The plugin serves the purpose exactly as you have mentioned. It does not need admin to manually approve it.

    Regards
    Brajesh