Hi,
The WordPress Popular Posts based on Comments. We used the Popular Posts code from WordPress Codex ; https://codex.wordpress.org/Class_Reference/WP_Query
In template-parts/content-page.php file add the following code after <div class=”entry-content”> to enable Featured image on Pages.
<?php if ( has_post_thumbnail() ) { echo '<div class="tp-post-thumbnail"> <figure>'; the_post_thumbnail(); echo '</figure> </div>' } ?>
We are also going to release Popualar Posts based on Views in next update of the theme. Currently, the plugin has been in beta stage, will be released soon.
Thanks