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: 25332
    Brajesh Singh on in reply to: Forum layout breaks down on groups #22247

    Hi AJ,
    Thank you for the details. I had a look in the day and it seems bbPress is not compatible with your theme. My suggestion is to contact your theme developers as it needs css to support the forum.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    Brajesh Singh on in reply to: Mediapress Members gallery page not working #22245

    Hi Audiomonk,
    I am sorry for the issue. I am unable to understand it though.

    Please share some screenshots to show the issue and help me assist you better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    Brajesh Singh on in reply to: BP Rate Limit Private Message issues #22244

    Hi Carsten,
    Thank you.
    At the moment, we do not plan compatibility with the BP Profile Message UX Free. I will be looking at it again sometimes early next month to reevaluate our options. Our schedule for this month’s update/release are already filled and I.my team is unable to look into other projects for now.

    We will re-evaluate it again next month for sure.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332

    Thank you Philip.
    That makes sense:)

    Have a nice weekend to you too.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332

    Hi Michaël,
    Thank you for reminding.

    I am sorry but I have forgotten the context. Can you please remind me again the issue with the profile background plugin? What was the issue with height? Please let me know and I will send an update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    Brajesh Singh on in reply to: Forum layout breaks down on groups #22232

    Hi AJ,
    Thank you for the topic.

    Which theme are you using? Please let me know and I may be able to assist further.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    Brajesh Singh on in reply to: [Resolved] Adding Widget Area #22230

    Hi Jessica,
    Can you please give it a try and se eif it works?

    
    
    /**
     * Register widgets.
     */
    function buddydev_custom_theme_register_widgets() {
    
    	register_sidebar( array(
    		'name'          => 'IGMR Before Container Area',
    		'id'            => 'igmr_before_container_area',
    		'description'   => __( 'Displays above container', 'text_domain' ),
    		'before_widget' => '<div id="%1$s" class="widget %2$s">',
    		'after_widget'  => '</div>',
    		'before_title'  => '<h3 class="widgettitle">',
    		'after_title'   => '</h3>'
    	) );
    }
    
    add_action( 'widgets_init', 'buddydev_custom_theme_register_widgets' );
    
    function igmr_widget_area_above_container() {
    
    	if ( is_active_sidebar( 'igmr_before_container_area' ) && is_singular( array( 'post', 'page' ) ) ) : ?>
    		<div id="above-container" class="inner clearfix">
    			<section id="above-container-area">
    				<?php dynamic_sidebar( 'igmr_before_container_area' ); ?>
    			</section>
    		</div>
    
    		<!-- #above-container -->
    
    	<?php endif;
    
    }
    
    add_action( 'cb_before_container', 'igmr_widget_area_above_container' );
    
    

    In the previous code you shared, it seems that was a misplaced bracket ‘}’

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25332
    Brajesh Singh on in reply to: BP Rate Limit Private Message issues #22229
    This reply has been marked as private.