Replies
- Brajesh Singh on March 10, 2020 at 10:36 pm in reply to: [Resolved] Community Builder – filter hook not firing? #28222
Hi James,
My bad, It is cb-layout-general-functions.php line 561.Regards
Brajesh - Brajesh Singh on March 10, 2020 at 10:34 pm in reply to: [Resolved] BuddyPress settings are overruled #28220
No issues.
Regards
Brajesh - Brajesh Singh on March 10, 2020 at 10:33 pm in reply to: Private Message Rate Limiter – Rate Limit User Activity #28219This reply has been marked as private.
- Brajesh Singh on March 10, 2020 at 3:58 pm in reply to: [Resolved] BuddyPress Moderation Tools Report Button Issue #28207
Hi Eamon,
Thank you for the patience.Please upgrade to 1.3.0. It should fix the button markup.
Regards
Brajesh - Brajesh Singh on March 10, 2020 at 3:24 pm in reply to: [Resolved] Mediapress – padding issue. When clicking on buttons! #28205
Hi Carsten,
Thank you for confirming.
Yes, sometimes the simplest changes does the magic 🙂Regards
Brajesh - Brajesh Singh on March 10, 2020 at 3:23 pm in reply to: Buddyboss Platform and Buddyboss Theme Plugin Integration #28204
Hi Kevin,
Thank you.I am sorry but I am unable to re-create it. Is it happening for some specific user or content type(e.g activity/ etc).
Can you please provide me steps to re-create or test it and I will quickly assist.
Regards
Brajesh - Brajesh Singh on March 10, 2020 at 3:21 pm in reply to: Front End / BuddyBlog – How to separate Category and Tags #28203
Hi JC,
1. You can remove the div as you please.
Since tags/categories are taxonomies, we put 1 renderer for all taxonomies and separated them as a block. That is the normal use case.Please feel free to change
<?php if ( $this->has_tax() ) : ?> <div class='simple-post-taxonomies-box clearfix'> <?php $this->render_taxonomies(); ?> <div class="clear"></div> </div> <?php endif; ?>to
<?php if ( $this->has_tax() ) : ?> <?php $this->render_taxonomies(); ?> <?php endif; ?>and move it near the comments.
2. No, In the current condition, unless you modify the form, css will not help move it.
Regards
Brajesh - Brajesh Singh on March 10, 2020 at 3:12 pm in reply to: [Resolved] Members without profile picture #28201
Hi Laurent,
That’s good to know.Best Regards
Brajesh - Brajesh Singh on March 10, 2020 at 3:11 pm in reply to: User view count partially not working #28199
Thank you for the understanding. I am glad that is is working.
We do assist with code but anything that needs more than 15 minutes of coding is beyond our forum support.
Regards
Brajesh - Brajesh Singh on March 10, 2020 at 3:09 pm in reply to: [Resolved] Community Builder – filter hook not firing? #28198
Hi James,
Thank you.1. The function is defined in the same file. Please check line 561.
Also, you are right about the toggle button. This needs to be updated. There is a solution though.You can set the panel visibility to ‘none’ like this
add_filter( 'cb_panel_visibility', function ( $visibility, $user_scope, $panel ) { if ( 'right' === $panel ) { $visibility = 'none'; } return $visibility; }, 10, 3 );and it will take care of it for the toggle as well as the panel.
2. You are welcome. Yes, more document are coming in near future.
Regards
Brajesh