Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Hi Nick,
    Thank you for the patience. It is available as part of the default notifications plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Categories and Tags on blog posts #40177
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    Hi,
    Thank you for the patience.

    Please upgrade to 1.9.0.

    The directory visibility preference is now honoured in the groups.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25489

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Categories and Tags on blog posts #40172

    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
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25489
    Brajesh Singh on in reply to: Categories and Tags on blog posts #40158

    Hi 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