• First of all, Thanks for making this amazing theme! [Thumbs up]

    I found a small issue in category page that, there is an extra line before every post content (post page and home page is fine).

    I’ve check the HTML code of the extra line, it turns out to be an empty <p>, so I think this empty <p> is put there by mistake?

    And I disabled all the plugins and the problem still existed, So I think it’s not related to the plugins I’ve installed.

    ==============================

    Well, I know what the problem is. In the file of category.php, line 47 ~ 50, the origin code is

    
        <div class="qua_blog_post_content">
            <p><?php the_content( __( 'Read More' , 'quality' ) ); ?></p>
            <?php wp_link_pages(); ?>               
        </div>
    

    which should be:

    
        <div class="qua_blog_post_content">
            <?php the_content( __( 'Read More' , 'quality' ) ); ?>
            <?php wp_link_pages(); ?>               
        </div>
    
    • This topic was modified 6 years, 6 months ago by chrisyue.
    • This topic was modified 6 years, 6 months ago by chrisyue.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Little Problem in the Category Page’ is closed to new replies.