Replies
- Brajesh Singh on April 29, 2021 at 12:49 am 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 - Brajesh Singh on April 29, 2021 at 12:33 am in reply to: [Resolved] Two panel menus, one is empty #38375
Hi Carsten,
Thank you.I am glad it is resolved.
Regards
Brajesh - Brajesh Singh on April 29, 2021 at 12:32 am in reply to: [Resolved] Does BuddyPress Live Notifications 2.0 add functionality to new BP version? #38374
Hi Alexis,
Thank you for the question.yes, you do. BuddyPress does not have live notifications available.
Regards
Brajesh - Brajesh Singh on April 29, 2021 at 12:31 am in reply to: Email Notification – buddyblog pro form workflow #38373This reply has been marked as private.
- Brajesh Singh on April 29, 2021 at 12:29 am in reply to: [Resolved] Buddyblog – premium version: bugs and suggestions #38371
Hi Kateryna,
You are welcome.I am glad it is resolved.
Regards
Brajesh - Brajesh Singh on April 28, 2021 at 10:56 am in reply to: [Resolved] Buddyblog – premium version: bugs and suggestions #38357This reply has been marked as private.
- Brajesh Singh on April 28, 2021 at 10:55 am in reply to: Community Builder theme has different functions and hooks? #38356
Hi Carsten,
Thank you for your question.There is not much change but re-organization. All default BuddyPress hooks from legacy template pack is retained.
The class and id names are not retained completely and we have modified them as we show fit.
Regards
Brajesh - Brajesh Singh on April 27, 2021 at 11:56 pm in reply to: [Resolved] tags are removed from tab content #38343
Hi Jeremy,
Thank you for the reply.Do you have a staging site where I can check it by disabling some of the plugin? If yes, Please let me know with the details.
Regards
Brajesh - Brajesh Singh on April 27, 2021 at 11:53 pm in reply to: [Resolved] New User redirect not working (404 page) when placing an order #38342
Hi Rhie,
Thank you for letting me know. I am glad you were able to resolve it.Regards
Brajesh Hi Aria,
Thank you for the question.No, we do not supply any css. We load the members loop(buddypress/members/members-loop.php) from your template(or fallback to active template pack) and most of the time, the theme’s style should work here.
Can you please tell me which theme are you using and if they are applying proper styles on members directory?
Regards
Brajesh