If you’re using a child theme then you can try adding this on your child theme’s functions.php
add_action( 'frontier_after_blog_post_byline', 'ra_postviews_byline' );
function ra_postviews_byline() {
if ( function_exists('the_views') ) {
the_views();
}
}