Joe Bliss
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Nisarg] Missing front page formattingI think this can be marked as resolved with the latest update (1.2.6)! Thank you.
Forum: Themes and Templates
In reply to: [Nisarg] Missing front page formattingOkay, thank you for the clarification!
Forum: Themes and Templates
In reply to: [Nisarg] Missing front page formattingI fixed it by removing || is_home() || is_archive() || is_author() from the content.php in my child theme.
It looks like it was wrongly classifying things on the main page as excerpts.
<?php if ( is_search()) : // Only display Excerpts for Search ?>
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div><!– .entry-summary –><?php else : ?>
<div class=”entry-content”>
<?php
the_content();?>
<?php
wp_link_pages( array(
‘before’ => ‘<div class=”page-links”>’ . esc_html__( ‘Pages:’, ‘nisarg’ ),
‘after’ => ‘</div>’,
) );
?>
</div><!– .entry-content –>
<?php endif; ?>Forum: Themes and Templates
In reply to: [Nisarg] Missing front page formattingThank you for the quick reply.
I setup a test on my website. You can see how the THEME TEMP POST at the top of the front page differs from the Permalink.
Forum: Themes and Templates
In reply to: [Nisarg] Missing front page formattingIt also seems to ignore block quotes and spacing.
If I navigate to the article everything shows up correctly, but the front page just makes it all one paragraph.