April 15, 2017 at 10:22 am
#7740
Keymaster
You can try and add this to 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') ) {
echo '<i class="fa fa-eye"></i> ' . the_views( false );
}
}