Hi,
Answering to your question:
In the future: There will be an option to customize the views count manually.
For now: use the pvc_post_views_html filter hook and don’t display the views count if if it’s lower then x. Like this:
function df_pvc_post_views_html($html, $post_id, $views) {
if ((int)$views < 100)
$html = '';
return $html;
}
add_filter('pvc_post_views_html', 'df_pvc_post_views_html', 10, 3);