BuddyBoss Home – Web Support Forums Themes Boss. theme Boss 1.2.2 blog page error

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #48276
    @peppe-sapienza

    The blog page of my blog http://www.xcoding.it/blog/ don’t show the excerpt of a blog post but the all text. How can i fix this?

    Answers

    #48280
    @vapvarun

    Hi @peppe-sapienza
    to follow the standards we have kept only on search results only
    you can modify the content.php inside the child theme as per your requirement
    You will need to replace following codes inside the content.php

    					
    
    <?php if ( is_search() ) :
                        		the_excerpt();
    						  else :
    							the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'boss' ) );
    						  endif; ?>
    
    

    with

    
    <?php the_excerpt(); ?>
    

    Regards
    Varun Dubey

    #48337
    @peppe-sapienza

    This kill the readability of the blog page. Why is a standard?

    Anyway thank, this work 😉

    #48376
    @vapvarun

    That’s WordPress Standard you can check that with any default WordPress theme.
    I will suggest developer to make is optional with settings and let them user choose theme How they want to display them Blog as full content or Excerpt.

    I will close this issue for now.

    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Boss 1.2.2 blog page error’ is closed to new replies.