Replies
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- Brajesh Singh on April 12, 2019 at 6:26 pm in reply to: [Resolved] Plugin or snippet for limit the number Go #22246This reply has been marked as private.
- Brajesh Singh on April 12, 2019 at 6:26 pm 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 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- Brajesh Singh on April 12, 2019 at 6:22 pm in reply to: [Resolved] Assign additional Member Type per role but keep existing ones in separate field #22243
Thank you Philip.
That makes sense:)Have a nice weekend to you too.
Regards
Brajesh - Brajesh Singh on April 12, 2019 at 6:00 pm in reply to: [Resolved] BuddyPress Custom Background For User Profile – Background don't work #22242
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 - Brajesh Singh on April 12, 2019 at 8:31 am in reply to: [Resolved] Plugin or snippet for limit the number Go #22235This reply has been marked as private.
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
BrajeshHi 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- This reply has been marked as private.