<?php global $post; echo get_post_meta($post->ID, 'mashpv_pageviews_count', true); ?>
Use the page view count in a template
Output the page views with the following code in your page template:
<?php global $post; echo get_post_meta($post->ID, 'mashpv_pageviews_count', true); ?>