Replies
- Brajesh Singh on May 2, 2021 at 10:27 am in reply to: [Resolved] Allow the users to create categories and tags from the frontend #38436
You are welcome.
- Brajesh Singh on May 2, 2021 at 10:26 am in reply to: “Gamipress” + “BuddyPress User Profile Tabs Creator Pro” #38435
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 - Brajesh Singh on April 29, 2021 at 8:51 pm in reply to: Change Profile Visibility for *EXISTING* users? Also in Bulk? #38391
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 Hi Vivien,
Thank you for the question.It will be available in next 12-16 weeks.
Regards
Brajesh- Brajesh Singh on April 29, 2021 at 8:15 pm in reply to: [Resolved] Allow the users to create categories and tags from the frontend #38389
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 - Brajesh Singh on April 29, 2021 at 7:52 pm in reply to: [Resolved] Does BuddyPress Live Notifications 2.0 add functionality to new BP version? #38388
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 - Brajesh Singh on April 29, 2021 at 12:51 am in reply to: Community Builder theme has different functions and hooks? #38377
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 - 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