Replies
- Brajesh Singh on August 23, 2021 at 7:08 pm in reply to: [Resolved] Unknown translation strings and duplicates in BP Poke #40193
Hi Carsten,
Thank you for the topic. We are only replying on the critical topics on weekend. That’s why your topic did not receive any response.Do you still need assistance or should we close the topic?
Regards
Brajesh - Brajesh Singh on August 23, 2021 at 7:07 pm in reply to: [Resolved] Facebook-like stream plugin working with BuddyBoss? #40192
Hi Paul,
Thank you for reporting.It may be a recent conflict. Please allow our team to check and report back to you within next 2 days.
Thank you
Brajesh - Brajesh Singh on August 21, 2021 at 12:33 am in reply to: Controlling Default Email Preferences for Users #40179
Hi,
Thank you for the patience.Please upgrade to 1.0.8. you can set the forum/topic subscription as well as the zoom meetings & webinars preference now.
Regards
Brajesh - Brajesh Singh on August 21, 2021 at 12:32 am in reply to: [Resolved] Additional BuddyBoss Default Email Preferences #40178
Hi Nick,
Thank you for the patience. It is available as part of the default notifications plugin.Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on August 21, 2021 at 12:07 am in reply to: [Resolved] Apply “BuddyPress Profile Visibility Manager” to Groups #40176
Hi,
Thank you for the patience.Please upgrade to 1.9.0.
The directory visibility preference is now honoured in the groups.
Regards
Brajesh - Brajesh Singh on August 21, 2021 at 12:06 am in reply to: [Resolved] Profile Visibility Manager not hiding profiles #40175
Hi Ian,
hope you are doing well.Just letting you know that this behaviour is now part of Profile visibility 1.9.0
Regards
Brajesh - Brajesh Singh on August 21, 2021 at 12:05 am in reply to: [Resolved] BuddyPress Testimonials Issue With Woocommerce #40174
Hi Khalid,
Thank you for using the plugin.I had a look at the 1.2.0 and I am not seeing much change from 1.6.0. Can you please upgrade again to 1.2.0 and check if the issue happens.
The Testimonials plugin does not interact with WooCommerce and it will be very strange if it can cause conflict. still, If the upgrade to 1.2.0 causes issue, Please check the browser console. is there any javascript issue. This is the the only suspect that I can think of. Please let me know if you see the error.
Thank you
Brajesh Hi Daniel,
I had a look the site again. The problem with categories is the issue with BuddyBoss theme. It works that way for custom post types. you can check the same by posting from WordPress dashboard instead of BuddyBlog Por(I will link to a url in my next private post).The solution is to copy and modify the template-parts/content.php from BuddyBoss theme to your child theme/template-parts/content.php.
You will see a code section like this
<?php if( is_single() && ( has_category() || has_tag() ) ) { ?> <div class="post-meta-wrapper"> <?php if ( has_category() ) : ?> <div class="cat-links"> <i class="bb-icon-folder"></i> <?php _e( 'Categories: ', 'buddyboss-theme' ); ?> <span><?php the_category( __( ', ', 'buddyboss-theme' ) ); ?></span> </div> <?php endif; ?> <?php if ( has_tag() ) : ?> <div class="tag-links"> <i class="bb-icon-tag"></i> <?php _e( 'Tagged: ', 'buddyboss-theme' ); ?> <?php the_tags( '<span>', __( ', ', 'buddyboss-theme' ),'</span>' ); ?> </div> <?php endif; ?> </div> <?php } ?>You need to remove the condition
<div class="post-meta-wrapper"> <?php if ( has_category() ) : ?> <div class="cat-links"> <i class="bb-icon-folder"></i> <?php _e( 'Categories: ', 'buddyboss-theme' ); ?> <span><?php the_category( __( ', ', 'buddyboss-theme' ) ); ?></span> </div> <?php endif; ?> <?php if ( has_tag() ) : ?> <div class="tag-links"> <i class="bb-icon-tag"></i> <?php _e( 'Tagged: ', 'buddyboss-theme' ); ?> <?php the_tags( '<span>', __( ', ', 'buddyboss-theme' ),'</span>' ); ?> </div> <?php endif; ?> </div>Currently, the show it only on single posts page.
Hope that helps.
Regards
BrajeshHi Daniel,
Thank you.For the single page, here is the fix
.single-passion-project-upda.sticky-header #comments:before{ margin-top:0; height: 0; }Please add this to dashboard->Themes->Appearance->Customize-> Custom css and the comment box will stop preventing the link from working.
The screenshot on our site is from BuddyPress Default theme(used to come until BuddyPress 1.5).
The tags on loop screen should work fine with Blog post type. Since you are using a custom post type, The taxonomy terms are not loaded. I will be checking in couple of hours and assisting you with a solution.Regards
Brajesh