Replies
- Brajesh Singh on December 14, 2022 at 10:47 pm in reply to: [Resolved] Display Buddypress current user amount of Followers #47650
Hi,
Since you are using BuddyBoss, The button does not work. So, my suggestion is to not have it or request BuddyBoss to allow the buttons to work outside the default loop/profile.Regards
Brajesh - Brajesh Singh on December 14, 2022 at 9:51 pm in reply to: [Resolved] BuddyBlog delete action hook/filter #47647
Hi Nik,
Thank you for the reply.1. The hook ‘bblpro_post_submitted’ is called when the post is finally submitted( for public or review)
3. the hook ‘bbl_pro_post_updated’ is called all the other times you are submitting post. It could be an update to draft post or already published post.I understand the sync issue. The Events plugin is not aware of BuddyBlog Pro and vice versa and that’s why it is happening.
I hope you are able to find a solution.
Regards
Brajesh - Brajesh Singh on December 14, 2022 at 9:46 pm 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 - Brajesh Singh on December 14, 2022 at 9:36 pm 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 - Brajesh Singh on December 14, 2022 at 9:31 pm in reply to: [Resolved] Conditional Profile Fields for BuddyPress – Fields still showing up in BuddyBoss #47644
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 - Brajesh Singh on December 14, 2022 at 8:50 pm in reply to: [Resolved] Display Buddypress current user amount of Followers #47643
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 - Brajesh Singh on December 14, 2022 at 8:37 pm in reply to: BuddyPress Group Tabs Creator Pro Default Groups tabs enable option available #47642
Hi Kishan,
Please visit Group->Manage->Settings and you will see the option to turn on/off for the discussion.Regards
Brajesh - Brajesh Singh on December 14, 2022 at 8:36 pm in reply to: [Resolved] Buddyblog Pro – Elementor Loop Item Shortcode as Post Template on User Profile #47641
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 - Brajesh Singh on December 14, 2022 at 8:25 pm in reply to: [Resolved] buddypress: can comment for user role option? #47640
You are welcome!
- Brajesh Singh on December 14, 2022 at 10:40 am in reply to: BuddyPress Group Tabs Creator Pro Default Groups tabs enable option available #47630
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