Hello,
I have this same issue. I made a temporary fix by updating the archive.php file to use code from an older version that’s working. The used the following code instead.
<div class=”col-md-8 blog-column-left”>
<div class=”row blog-list”>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</div>
<div class=”comment-navigation grey-light”>
<?php echo maskitto_light_paginate_links(); ?>
</div>
</div>
<?php if( !isset( $maskitto_light[‘blog-widgets’] ) || $maskitto_light[‘blog-widgets’] == 1 ) : ?>
<div class=”col-md-4 blog-column-right”>
<?php get_sidebar(); ?>
</div>
<?php endif; ?>
Hope this helps.