I’m still having this problem. I have reported it to the theme developer (but I’m fearing that no one wants to help me figure out whether the issue needs something to be resolved on the plugin or the theme end of things.
Here’s an excerpt of the code on the page.php file. I can give you access to log into the site, but I can’t just provide you with a copy of theme since it is a premium theme (from Elegant Themes).
Here’s the except from the page.php file:
<?php while ( have_posts() ) : the_post(); ?>
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( ! $is_page_builder_used ) : ?>
<h1 class=”main_title”><?php the_title(); ?></h1>
<?php
$thumb = ”;
$width = (int) apply_filters( ‘et_pb_index_blog_image_width’, 1080 );
$height = (int) apply_filters( ‘et_pb_index_blog_image_height’, 675 );
$classtext = ‘et_featured_image’;
$titletext = get_the_title();
$thumbnail = get_thumbnail( $width, $height, $classtext, $titletext, $titletext, false, ‘Blogimage’ );
$thumb = $thumbnail[“thumb”];
if ( ‘on’ === et_get_option( ‘divi_page_thumbnails’, ‘false’ ) && ” !== $thumb )
print_thumbnail( $thumb, $thumbnail[“use_timthumb”], $titletext, $width, $height );
?>
<?php endif; ?>
<div class=”entry-content”>
<?php
the_content();
if ( ! $is_page_builder_used )
wp_link_pages( array( ‘before’ => ‘<div class=”page-links”>’ . __( ‘Pages:’, ‘Divi’ ), ‘after’ => ‘</div>’ ) );
?>
</div> <!– .entry-content –>
<?php
if ( ! $is_page_builder_used && comments_open() && ‘on’ === et_get_option( ‘divi_show_pagescomments’, ‘false’ ) ) comments_template( ”, true );
?>
</article> <!– .et_pb_post –>
<?php endwhile; ?>
I hope this helps to identify what could be causing the issue.
If not, maybe you can tell me what I need to do in order to fix it (on the theme), etc.
Thanks,
Gary