Replies
- 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
BrajeshHi Daniel,
I am assuming it is related to BuddyBlog Pro ? Can you please tell me on which screen this is happening?Is it the user profile posts screen? If possible, Please link me to a screenshot of the page having issue.
That will help us get an idea about it.
Regards
Brajesh- Brajesh Singh on August 19, 2021 at 10:04 am in reply to: [Resolved] Error updating Group Tabs Creator Pro #40149
I am glad it is resolved.
Have a great day.
Regards
Brajesh - Brajesh Singh on August 18, 2021 at 6:42 pm in reply to: [Resolved] Error updating Group Tabs Creator Pro #40138
Hi Nick,
I am sorry for the issue.have you configured BuddyDev API keys using BuddyDev dashboard plugin?
Regards
Brajesh - Brajesh Singh on August 18, 2021 at 12:44 pm in reply to: [Resolved] Remove Profile Tabs Dropdown Menu #40135
Hi Lisa,
I am sorry, I had used incorrect filter for the directory tabs that had no effect.Please remove the old code and use this instead.
/** * Disable greedy nav for single item as well as directory tabs in Community Builder */ function cb_bp_disable_greedynav_css_class( $classes ) { $classes[] = 'no-greedy-nav'; return $classes; } add_filter( 'cb_bp_single_item_tabs_classes', 'cb_bp_disable_greedynav_css_class' ); add_filter( 'cb_bp_dir_item_tabs_classes', 'cb_bp_disable_greedynav_css_class' );Regards
Brajesh