Avada › Forums › Community Forum › Posts are broken: Site header loads, then nothing else › Reply To: Posts are broken: Site header loads, then nothing else
I figured out the problem. In my child theme’s single.php
file, one line had to be changed to match what the new version of Avada has in its single.php
.
Old version:
<section id="content" <?php Avada()->layout->add_style( 'content_style' ); ?>>
New version:
<section id="content" style="<?php echo esc_attr( apply_filters( 'awb_content_tag_style', '' ) ); ?>">
Updating that fixed the problem with the blog posts appearing blank. There don’t appear to be any other differences, aside from my own styling customizations.