Replies
- This reply has been marked as private.
- Brajesh Singh on March 10, 2020 at 10:38 pm in reply to: The 'Active' text in the span.activity has gone. #28225
Hi Carsten,
I am not completely sure but my guess is it is due to the use of livetimestamp.js. This keeps updating the time in realtime.Regards
Brajesh Thank you.
- 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