Hi,
Please remove the if content condition.
For the “Page”:
Replace the codes in /template/page/content.php as:
<?php
$container = arttheme_get_option('theme_option_main_width_style') ? arttheme_get_option('theme_option_main_width_style') : 'container';
?>
<div class="entry <?php echo sanitize_html_class($container); ?>"><?php the_content(); ?><div class="clear"><?php wp_link_pages(); ?></div></div><!--End entry-->
For the “Single Post”: Replace the codes in /template/single/format-standard.php:
<?php
if(has_post_thumbnail()){ ?>
<div class="single-featured-image"><?php the_post_thumbnail(); ?></div>
<?php
}
?>
<div class="entry clearfix"><?php the_content(); ?><div class="clear"><?php wp_link_pages(); ?></div></div><!--End entry-->
PS: I suggest you put the changed files into the child theme, or they will be covered when theme updated.
Regards!
Bwsm – uiueux.com – Twitter – Facebook